mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 12:48:16 +00:00
target/sparc/fop_helper: Perform comparison pass against qemu
Ensure formatting and code is consistent from the backporting
This commit is contained in:
parent
2114d28f7e
commit
a228660860
1 changed files with 2 additions and 1 deletions
|
@ -64,9 +64,10 @@ static target_ulong do_check_ieee_exceptions(CPUSPARCState *env, uintptr_t ra)
|
|||
cpu_loop_exit_restore(cs, ra);
|
||||
} else {
|
||||
/* Accumulate exceptions */
|
||||
fsr |= (env->fsr & FSR_CEXC_MASK) << 5;
|
||||
fsr |= (fsr & FSR_CEXC_MASK) << 5;
|
||||
}
|
||||
}
|
||||
|
||||
return fsr;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue