summary refs log tree commit diff stats
path: root/tests/fp/fp-test.c
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2024-12-11 15:30:57 +0000
committerPeter Maydell <peter.maydell@linaro.org>2024-12-11 15:30:57 +0000
commit43e51128083185ec5deb2cbe322fb851f7e2d2ae (patch)
tree5aae1a5dbcaa7893b3313e11b4e77f0567649df1 /tests/fp/fp-test.c
parent7a944c30f72380e543b58342e12105dcf98d8496 (diff)
downloadfocaccia-qemu-43e51128083185ec5deb2cbe322fb851f7e2d2ae.tar.gz
focaccia-qemu-43e51128083185ec5deb2cbe322fb851f7e2d2ae.zip
tests/fp: Explicitly set 3-NaN propagation rule
Explicitly set a rule in the softfloat tests for propagating NaNs in
the muladd case.  In meson.build we put -DTARGET_ARM in fpcflags, and
so we should select here the Arm rule of float_3nan_prop_s_cab.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20241202131347.498124-17-peter.maydell@linaro.org
Diffstat (limited to 'tests/fp/fp-test.c')
-rw-r--r--tests/fp/fp-test.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/fp/fp-test.c b/tests/fp/fp-test.c
index 251c278ede..f290d523ab 100644
--- a/tests/fp/fp-test.c
+++ b/tests/fp/fp-test.c
@@ -940,6 +940,7 @@ void run_test(void)
      * doesn't specify match those used by the Arm architecture.
      */
     set_float_2nan_prop_rule(float_2nan_prop_s_ab, &qsf);
+    set_float_3nan_prop_rule(float_3nan_prop_s_cab, &qsf);
     set_float_infzeronan_rule(float_infzeronan_dnan_if_qnan, &qsf);
 
     genCases_setLevel(test_level);