diff options
Diffstat (limited to 'target-cris/op_helper.c')
-rw-r--r-- | target-cris/op_helper.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/target-cris/op_helper.c b/target-cris/op_helper.c index 4f0f07cd4d..d0ec519b19 100644 --- a/target-cris/op_helper.c +++ b/target-cris/op_helper.c @@ -23,7 +23,11 @@ #include "exec.h" #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" |