mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Another portability patch graciously provided by Casey Carter
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3698 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4042332d4a
commit
8b77be22f5
@ -1153,7 +1153,7 @@ bool Interpreter::executeInstruction() {
|
||||
if (int SigNo = sigsetjmp(SignalRecoverBuffer, 1)) {
|
||||
--SF.CurInst; // Back up to erroring instruction
|
||||
if (SigNo != SIGINT) {
|
||||
cout << "EXCEPTION OCCURRED [" << _sys_siglistp[SigNo] << "]:\n";
|
||||
cout << "EXCEPTION OCCURRED [" << strsignal(SigNo) << "]:\n";
|
||||
printStackTrace();
|
||||
// If -abort-on-exception was specified, terminate LLI instead of trying
|
||||
// to debug it.
|
||||
|
Loading…
Reference in New Issue
Block a user