]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
target/sparc: don't set FSR_NVA when comparing unordered floats
authorClément Chigot <chigot@adacore.com>
Fri, 25 Apr 2025 09:35:13 +0000 (11:35 +0200)
committerMark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Tue, 27 May 2025 19:09:13 +0000 (20:09 +0100)
FSR_NVA should be set when one of the operands is a signaling NaN or
when using FCMPEx instructions. But those cases are already handled
within check_ieee_exception or floatxx_compare functions.
Otherwise, it should be left untouched.

FTR, this was detected by inf-compare-[5678] tests within gcc
testsuites.

Signed-off-by: Clément Chigot <chigot@adacore.com>
Message-Id: <20250425093513.863289-1-chigot@adacore.com>
Acked-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
target/sparc/fop_helper.c

index a49334150d36169001a70fdc7887d17e0daf75e3..29fd16643840321eb13d000a701fff9544c57d99 100644 (file)
@@ -445,7 +445,6 @@ static uint32_t finish_fcmp(CPUSPARCState *env, FloatRelation r, uintptr_t ra)
     case float_relation_greater:
         return 2;
     case float_relation_unordered:
-        env->fsr |= FSR_NVA;
         return 3;
     }
     g_assert_not_reached();