| 1362 | } |
| 1363 | |
| 1364 | static int compile_new_label( compiler * c ) |
| 1365 | { |
| 1366 | int result = c->labels->size; |
| 1367 | struct label_info info; |
| 1368 | info.absolute_position = -1; |
| 1369 | dynamic_array_init( info.uses ); |
| 1370 | dynamic_array_push( c->labels, info ); |
| 1371 | return result; |
| 1372 | } |
| 1373 | |
| 1374 | static void compile_set_label( compiler * c, int label ) |
| 1375 | { |
no test coverage detected