| 3134 | |
| 3135 | |
| 3136 | void GenCodeCmdDecI(VMCmd cmd) |
| 3137 | { |
| 3138 | (void)cmd; |
| 3139 | EMIT_COMMENT("DEC int"); |
| 3140 | EMIT_OP_REG(o_pop, rEAX); |
| 3141 | EMIT_OP_REG_NUM(o_sub, rEAX, 1); |
| 3142 | EMIT_OP_REG(o_push, rEAX); |
| 3143 | } |
| 3144 | |
| 3145 | void GenCodeCmdDecD(VMCmd cmd) |
| 3146 | { |
nothing calls this directly
no test coverage detected