diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-11-09 22:12:08 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-11-09 22:12:08 +0000 |
commit | bf71c9d9b64a70e56db351c38ff71e5e27d871e7 (patch) | |
tree | eced9c3a0bfca780c122af6c7dc616df8d7f21a2 | |
parent | 7a987127f424912cd356c443f77e4e6147b57b80 (diff) |
disabled again register usage for ppc because my previous patch seems still buggy
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1130 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r-- | dyngen-exec.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dyngen-exec.h b/dyngen-exec.h index 1a3bb2a181..86087ca623 100644 --- a/dyngen-exec.h +++ b/dyngen-exec.h @@ -93,6 +93,8 @@ extern int printf(const char *, ...); #define AREG1 "r24" #define AREG2 "r25" #define AREG3 "r26" +/* XXX: suppress this hack */ +#if defined(CONFIG_USER_ONLY) #define AREG4 "r16" #define AREG5 "r17" #define AREG6 "r18" @@ -101,6 +103,7 @@ extern int printf(const char *, ...); #define AREG9 "r21" #define AREG10 "r22" #define AREG11 "r23" +#endif #define USE_INT_TO_FLOAT_HELPERS #define BUGGY_GCC_DIV64 #endif |