| 1500 | } |
| 1501 | |
| 1502 | static void compile_emit( compiler * c, uint32_t op_code, int32_t arg ) |
| 1503 | { |
| 1504 | instruction instr; |
| 1505 | instr.op_code = op_code; |
| 1506 | instr.arg = arg; |
| 1507 | compile_emit_instruction( c, instr ); |
| 1508 | } |
| 1509 | |
| 1510 | static void compile_emit_branch( compiler * c, uint32_t op_code, int32_t label ) |
| 1511 | { |
no test coverage detected