Fix FPA condition codes (Ulrich Hecht).

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1784 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
pbrook 2006-03-11 21:03:16 +00:00
parent b55669bf57
commit 19b045dec9
3 changed files with 11 additions and 25 deletions

View file

@ -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;