diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-29 14:39:49 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-29 14:39:49 +0000 |
commit | 273af66025e8cc6982febfb4a74a8d9106a92440 (patch) | |
tree | 9e82d63fb3e399c63db425ab6908ce71001bade9 /target-ppc | |
parent | b50a6563d8590675905b730d32f17fa119664e0e (diff) | |
download | qemu-273af66025e8cc6982febfb4a74a8d9106a92440.zip |
Adjust s390 addresses (the MSB is defined as "to be ignored").
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3486 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc')
-rw-r--r-- | target-ppc/op_helper.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/target-ppc/op_helper.c b/target-ppc/op_helper.c index 751bd7212c..da5a6f5e37 100644 --- a/target-ppc/op_helper.c +++ b/target-ppc/op_helper.c @@ -2732,7 +2732,11 @@ DO_SPE_OP1(fsctuf); #if !defined (CONFIG_USER_ONLY) #define MMUSUFFIX _mmu -#define GETPC() (__builtin_return_address(0)) +#ifdef __s390__ +# define GETPC() ((void*)((unsigned long)__builtin_return_address(0) & 0x7fffffffUL)) +#else +# define GETPC() (__builtin_return_address(0)) +#endif #define SHIFT 0 #include "softmmu_template.h" |