Fix to make jello compile on Sparc even though it won't run.

llvm-svn: 4937
This commit is contained in:
Chris Lattner 2002-12-06 03:52:51 +00:00
parent 138469df3a
commit bd7029ffb3
1 changed files with 3 additions and 0 deletions

View File

@ -15,6 +15,7 @@ static VM *TheVM = 0;
static void TrapHandler(int TN, siginfo_t *SI, ucontext_t *ucp) {
assert(TN == SIGSEGV && "Should be SIGSEGV!");
#ifdef REG_EIP /* this code does not compile on Sparc! */
if (SI->si_code != SEGV_MAPERR || SI->si_addr != 0 ||
ucp->uc_mcontext.gregs[REG_EIP] != 0) {
std::cerr << "Bad SEGV encountered!\n";
@ -41,6 +42,8 @@ static void TrapHandler(int TN, siginfo_t *SI, ucontext_t *ucp) {
// Change the instruction pointer to be the real target of the call...
ucp->uc_mcontext.gregs[REG_EIP] = NewVal;
#endif
}