| 3104 | |
| 3105 | |
| 3106 | void GenCodeCmdIncI(VMCmd cmd) |
| 3107 | { |
| 3108 | (void)cmd; |
| 3109 | EMIT_COMMENT("INC int"); |
| 3110 | EMIT_OP_REG(o_pop, rEAX); |
| 3111 | EMIT_OP_REG_NUM(o_add, rEAX, 1); |
| 3112 | EMIT_OP_REG(o_push, rEAX); |
| 3113 | } |
| 3114 | |
| 3115 | void GenCodeCmdIncD(VMCmd cmd) |
| 3116 | { |
nothing calls this directly
no test coverage detected