diff options
Diffstat (limited to 'exec-i386.h')
-rw-r--r-- | exec-i386.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/exec-i386.h b/exec-i386.h index b85457704c..b4f5a0013f 100644 --- a/exec-i386.h +++ b/exec-i386.h @@ -106,6 +106,12 @@ register unsigned int T1 asm("$10"); register unsigned int A0 asm("$11"); register struct CPUX86State *env asm("$12"); #endif +#ifdef __ia64__ +register unsigned int T0 asm("r24"); +register unsigned int T1 asm("r25"); +register unsigned int A0 asm("r26"); +register struct CPUX86State *env asm("r27"); +#endif /* force GCC to generate only one epilog at the end of the function */ #define FORCE_RET() asm volatile (""); |