| 3155 | } |
| 3156 | |
| 3157 | void GenCodeCmdDecL(VMCmd cmd) |
| 3158 | { |
| 3159 | (void)cmd; |
| 3160 | EMIT_COMMENT("DEC long"); |
| 3161 | EMIT_OP_RPTR_NUM(o_sub, sDWORD, rESP, 0, 1); |
| 3162 | EMIT_OP_RPTR_NUM(o_sbb, sDWORD, rESP, 4, 0); |
| 3163 | } |
| 3164 | |
| 3165 | void (*closureCreateFunc)() = (void(*)())ClosureCreate; |
| 3166 |
nothing calls this directly
no test coverage detected