| 1381 | } |
| 1382 | |
| 1383 | void GenCodeCmdPushIntStk(VMCmd cmd) |
| 1384 | { |
| 1385 | EMIT_COMMENT("PUSH int stack"); |
| 1386 | |
| 1387 | EMIT_OP_REG(o_pop, rEDX); |
| 1388 | EMIT_OP_RPTR(o_push, sDWORD, rEDX, cmd.argument); |
| 1389 | KILL_REG(rEBX);KILL_REG(rECX);KILL_REG(rEDX); |
| 1390 | } |
| 1391 | |
| 1392 | void GenCodeCmdPushFloatStk(VMCmd cmd) |
| 1393 | { |
nothing calls this directly
no test coverage detected