| 1757 | } |
| 1758 | |
| 1759 | void Executor::Stop(const char* error) |
| 1760 | { |
| 1761 | codeRunning = false; |
| 1762 | |
| 1763 | callContinue = false; |
| 1764 | SafeSprintf(execError, ERROR_BUFFER_SIZE, error); |
| 1765 | } |
| 1766 | |
| 1767 | #ifdef NULLC_VM_CALL_STACK_UNWRAP |
| 1768 | bool Executor::RunCallStackHelper(unsigned funcID, unsigned extraPopDW, unsigned callStackPos) |
no test coverage detected