| 1388 | } |
| 1389 | |
| 1390 | static void compile_emit( compiler * c, unsigned int op_code, int arg ) |
| 1391 | { |
| 1392 | instruction instr; |
| 1393 | instr.op_code = op_code; |
| 1394 | instr.arg = arg; |
| 1395 | compile_emit_instruction( c, instr ); |
| 1396 | } |
| 1397 | |
| 1398 | static void compile_emit_branch( compiler * c, unsigned int op_code, int label ) |
| 1399 | { |
no test coverage detected