mirror of
https://github.com/Motorhead1991/qemu.git
synced 2026-01-06 06:27:41 -07:00
fpu: Rename float_flag_output_denormal to float_flag_output_denormal_flushed
Our float_flag_output_denormal exception flag is set when the fpu code flushes an output denormal to zero. Rename it to float_flag_output_denormal_flushed: * this keeps it parallel with the flag for flushing input denormals, which we just renamed * it makes it clearer that it doesn't mean "set when the output is a denormal" Commit created with for f in `git grep -l float_flag_output_denormal`; do sed -i -e 's/float_flag_output_denormal/float_flag_output_denormal_flushed/' $f; done Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20250124162836.2332150-21-peter.maydell@linaro.org
This commit is contained in:
parent
584b7aec81
commit
7af64d103d
9 changed files with 12 additions and 11 deletions
|
|
@ -5017,7 +5017,7 @@ floatx80 roundAndPackFloatx80(FloatX80RoundPrec roundingPrecision, bool zSign,
|
|||
}
|
||||
if ( zExp <= 0 ) {
|
||||
if (status->flush_to_zero) {
|
||||
float_raise(float_flag_output_denormal, status);
|
||||
float_raise(float_flag_output_denormal_flushed, status);
|
||||
return packFloatx80(zSign, 0, 0);
|
||||
}
|
||||
isTiny = status->tininess_before_rounding
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue