| 1474 | } |
| 1475 | |
| 1476 | static int32_t compile_new_label( compiler * c ) |
| 1477 | { |
| 1478 | int32_t result = c->labels->size; |
| 1479 | struct label_info info; |
| 1480 | info.absolute_position = -1; |
| 1481 | dynamic_array_init( info.uses ); |
| 1482 | dynamic_array_push( c->labels, info ); |
| 1483 | return result; |
| 1484 | } |
| 1485 | |
| 1486 | static void compile_set_label( compiler * c, int32_t label ) |
| 1487 | { |
no test coverage detected