From 19b045dec90378e63496f7ebf86b4f81fdcc5fd3 Mon Sep 17 00:00:00 2001 From: pbrook Date: Sat, 11 Mar 2006 21:03:16 +0000 Subject: Fix FPA condition codes (Ulrich Hecht). git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1784 c046a42c-6fe2-441c-8c8c-71466251a162 --- linux-user/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'linux-user/main.c') 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; -- cgit v1.2.3