mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Abort when the user program calls abort, instead of printing a funny message and calling exit(1).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9716 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d65460f133
commit
b56a6bc96a
@ -28,6 +28,7 @@
|
||||
#include "Config/dlfcn.h"
|
||||
#include "Config/link.h"
|
||||
#include <cmath>
|
||||
#include <csignal>
|
||||
#include <map>
|
||||
using std::vector;
|
||||
|
||||
@ -142,10 +143,7 @@ GenericValue lle_X_exit(FunctionType *M, const vector<GenericValue> &Args) {
|
||||
|
||||
// void abort(void)
|
||||
GenericValue lle_X_abort(FunctionType *M, const vector<GenericValue> &Args) {
|
||||
std::cerr << "***PROGRAM ABORTED***!\n";
|
||||
GenericValue GV;
|
||||
GV.IntVal = 1;
|
||||
TheInterpreter->exitCalled(GV);
|
||||
raise (SIGABRT);
|
||||
return GenericValue();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user