| 1532 | } |
| 1533 | |
| 1534 | static void compile_push_cleanup( compiler * c, uint32_t op_code, int32_t arg ) |
| 1535 | { |
| 1536 | instruction instr; |
| 1537 | instr.op_code = op_code; |
| 1538 | instr.arg = arg; |
| 1539 | dynamic_array_push( c->cleanups, instr ); |
| 1540 | } |
| 1541 | |
| 1542 | static void compile_pop_cleanup( compiler * c ) |
| 1543 | { |