Commit bf71c9d9b64a70e56db351c38ff71e5e27d871e7

Authored by bellard
1 parent 7a987127

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
Showing 1 changed file with 3 additions and 0 deletions
dyngen-exec.h
... ... @@ -93,6 +93,8 @@ extern int printf(const char *, ...);
93 93 #define AREG1 "r24"
94 94 #define AREG2 "r25"
95 95 #define AREG3 "r26"
  96 +/* XXX: suppress this hack */
  97 +#if defined(CONFIG_USER_ONLY)
96 98 #define AREG4 "r16"
97 99 #define AREG5 "r17"
98 100 #define AREG6 "r18"
... ... @@ -101,6 +103,7 @@ extern int printf(const char *, ...);
101 103 #define AREG9 "r21"
102 104 #define AREG10 "r22"
103 105 #define AREG11 "r23"
  106 +#endif
104 107 #define USE_INT_TO_FLOAT_HELPERS
105 108 #define BUGGY_GCC_DIV64
106 109 #endif
... ...