diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-19 17:20:01 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-19 17:20:01 +0000 |
commit | 6b4c11cd8ee746c2da2de7c1b77cb932c93e5463 (patch) | |
tree | eb08d1ab0d7f3e8efdb77d9af4355b356a9ed1ef | |
parent | c44f945a9275ac0ebc7922da085d49389ba9d70a (diff) | |
download | qemu-6b4c11cd8ee746c2da2de7c1b77cb932c93e5463.zip |
Fix Sparc32 compilation broken by r4484
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4499 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r-- | cpu-exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu-exec.c b/cpu-exec.c index fe309c78d9..65af9a6d87 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -1299,7 +1299,7 @@ int cpu_signal_handler(int host_signum, void *pinfo, siginfo_t *info = pinfo; int is_write; uint32_t insn; -#if !defined(__sparc_v9__) || defined(HOST_SOLARIS) +#if !defined(__arch64__) || defined(HOST_SOLARIS) uint32_t *regs = (uint32_t *)(info + 1); void *sigmask = (regs + 20); /* XXX: is there a standard glibc define ? */ |