| 1545 | } |
| 1546 | |
| 1547 | static void compile_emit_cleanups( compiler * c, int32_t end ) |
| 1548 | { |
| 1549 | int32_t i; |
| 1550 | for ( i = c->cleanups->size; --i >= end; ) |
| 1551 | { |
| 1552 | compile_emit_instruction( c, dynamic_array_at( instruction, c->cleanups, i ) ); |
| 1553 | } |
| 1554 | } |
| 1555 | |
| 1556 | static void compile_emit_loop_jump( compiler * c, int32_t type ) |
| 1557 | { |
no test coverage detected