aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2008-05-19 17:20:01 +0000
committerblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2008-05-19 17:20:01 +0000
commit6b4c11cd8ee746c2da2de7c1b77cb932c93e5463 (patch)
treeeb08d1ab0d7f3e8efdb77d9af4355b356a9ed1ef /cpu-exec.c
parentBetter solution for the alignment problem (diff)
downloadqemu-kvm-6b4c11cd8ee746c2da2de7c1b77cb932c93e5463.tar.gz
qemu-kvm-6b4c11cd8ee746c2da2de7c1b77cb932c93e5463.tar.bz2
qemu-kvm-6b4c11cd8ee746c2da2de7c1b77cb932c93e5463.zip
Fix Sparc32 compilation broken by r4484
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4499 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'cpu-exec.c')
-rw-r--r--cpu-exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu-exec.c b/cpu-exec.c
index fe309c78d..65af9a6d8 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 ? */