- Fix compilation on Linux/x86 with SIGCONTEXT_SUBTERFUGE

This commit is contained in:
gbeauche 2002-05-20 16:03:37 +00:00
parent c2d3d08a7a
commit ae93f1e0d8

View File

@ -245,7 +245,7 @@ static void powerpc_decode_instruction(instruction_t *instruction, unsigned int
#define SIGSEGV_FAULT_HANDLER_ARGLIST int sig, struct sigcontext scs
#define SIGSEGV_FAULT_ADDRESS scs.cr2
#define SIGSEGV_FAULT_INSTRUCTION scs.eip
#define SIGSEGV_REGISTER_FILE (unsigned long *)(&scs)
#define SIGSEGV_REGISTER_FILE (unsigned int *)(&scs)
#define SIGSEGV_SKIP_INSTRUCTION ix86_skip_instruction
#endif
#if (defined(sparc) || defined(__sparc__))