| 1874 | |
| 1875 | |
| 1876 | void GenCodeCmdJmp(VMCmd cmd) |
| 1877 | { |
| 1878 | EMIT_COMMENT("JMP"); |
| 1879 | EMIT_OP_LABEL(o_jmp, LABEL_GLOBAL | JUMP_NEAR | cmd.argument, true, true); |
| 1880 | } |
| 1881 | |
| 1882 | |
| 1883 | void GenCodeCmdJmpZ(VMCmd cmd) |
nothing calls this directly
no test coverage detected