diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-03-11 21:03:16 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-03-11 21:03:16 +0000 |
commit | 19b045dec90378e63496f7ebf86b4f81fdcc5fd3 (patch) | |
tree | c85450417b41d6917571e53f6a2d4e500934aeb4 /linux-user | |
parent | b55669bf570339188461a9ba755c2386f549de90 (diff) |
Fix FPA condition codes (Ulrich Hecht).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1784 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/main.c b/linux-user/main.c index 1402fd95b1..81450051bb 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -345,7 +345,7 @@ void cpu_loop(CPUARMState *env) /* we get the opcode */ opcode = ldl_raw((uint8_t *)env->regs[15]); - if (EmulateAll(opcode, &ts->fpa, env->regs) == 0) { + if (EmulateAll(opcode, &ts->fpa, env) == 0) { info.si_signo = SIGILL; info.si_errno = 0; info.si_code = TARGET_ILL_ILLOPN; |