diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-04-29 21:10:09 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-04-29 21:10:09 +0000 |
commit | 0d3301964df6d36c72dfa95ba5ae5e3b789cd1f8 (patch) | |
tree | cbf681930f4cae73619ef1571a421d6ad2e9fa9d /exec-i386.h | |
parent | fe1e3ce3e97f08d9b18b3444831a69b4666eb6b5 (diff) |
ia64 support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@115 c046a42c-6fe2-441c-8c8c-71466251a162
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 (""); |