diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-11-11 19:32:52 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-11-11 19:32:52 +0000 |
commit | 27524dc3600774e8c1a5cf54a4c41c6e78c8d535 (patch) | |
tree | 0c4ae3d10f663a74b2c196aeb79bd39cdd292060 /linux-user | |
parent | 70499c989f434cba8bc2104da9f6ca162c4a937b (diff) | |
download | qemu-27524dc3600774e8c1a5cf54a4c41c6e78c8d535.tar.gz qemu-27524dc3600774e8c1a5cf54a4c41c6e78c8d535.tar.bz2 qemu-27524dc3600774e8c1a5cf54a4c41c6e78c8d535.zip |
sparc64_[get|set]_context are not meaningful in abi32 mode
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3606 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux-user/main.c b/linux-user/main.c index eb28991ce2..5cc2d41370 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -641,6 +641,7 @@ void cpu_loop (CPUSPARCState *env) queue_signal(info.si_signo, &info); } break; +#ifndef TARGET_ABI32 case 0x16e: flush_windows(env); sparc64_get_context(env); @@ -650,6 +651,7 @@ void cpu_loop (CPUSPARCState *env) sparc64_set_context(env); break; #endif +#endif case EXCP_INTERRUPT: /* just indicate that signals should be handled asap */ break; |