| 484 | |
| 485 | #ifdef CPPIA_JIT |
| 486 | struct AutoFrame |
| 487 | { |
| 488 | StackContext *ctx; |
| 489 | unsigned char *frame; |
| 490 | |
| 491 | AutoFrame(StackContext *inCtx) : ctx(inCtx) |
| 492 | { |
| 493 | frame = ctx->frame; |
| 494 | } |
| 495 | ~AutoFrame() |
| 496 | { |
| 497 | ctx->frame = frame; |
| 498 | } |
| 499 | }; |
| 500 | #endif |
| 501 | |
| 502 |
nothing calls this directly
no outgoing calls
no test coverage detected