diff options
Diffstat (limited to 'target-sh4')
-rw-r--r-- | target-sh4/op_helper.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/target-sh4/op_helper.c b/target-sh4/op_helper.c index 2535b8d6aa..c1bc4e8942 100644 --- a/target-sh4/op_helper.c +++ b/target-sh4/op_helper.c @@ -28,7 +28,11 @@ void do_raise_exception(void) #ifndef 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" |