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 7a6f74b924..28da51def9 100644 --- a/exec-i386.h +++ b/exec-i386.h @@ -93,6 +93,12 @@ register unsigned int T1 asm("l1"); register unsigned int A0 asm("l2"); register struct CPUX86State *env asm("l3"); #endif +#ifdef __s390__ +register unsigned int T0 asm("r7"); +register unsigned int T1 asm("r8"); +register unsigned int A0 asm("r9"); +register struct CPUX86State *env asm("r10"); +#endif /* force GCC to generate only one epilog at the end of the function */ #define FORCE_RET() asm volatile (""); |