| 1881 | |
| 1882 | |
| 1883 | void GenCodeCmdJmpZ(VMCmd cmd) |
| 1884 | { |
| 1885 | EMIT_COMMENT("JMPZ int"); |
| 1886 | |
| 1887 | EMIT_OP_REG(o_pop, rEAX); |
| 1888 | EMIT_OP_REG_REG(o_test, rEAX, rEAX); |
| 1889 | EMIT_OP_LABEL(o_jz, LABEL_GLOBAL | JUMP_NEAR | cmd.argument, true, true); |
| 1890 | } |
| 1891 | |
| 1892 | void GenCodeCmdJmpNZ(VMCmd cmd) |
| 1893 | { |
nothing calls this directly
no test coverage detected