target/sparc/fop_helper: Perform comparison pass against qemu

Ensure formatting and code is consistent from the backporting
This commit is contained in:
Lioncash 2018-03-12 12:38:17 -04:00
parent 2114d28f7e
commit a228660860
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7

View file

@ -64,9 +64,10 @@ static target_ulong do_check_ieee_exceptions(CPUSPARCState *env, uintptr_t ra)
cpu_loop_exit_restore(cs, ra); cpu_loop_exit_restore(cs, ra);
} else { } else {
/* Accumulate exceptions */ /* Accumulate exceptions */
fsr |= (env->fsr & FSR_CEXC_MASK) << 5; fsr |= (fsr & FSR_CEXC_MASK) << 5;
} }
} }
return fsr; return fsr;
} }