mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
target/s390x: Set Float3NaNPropRule explicitly
Set the Float3NaNPropRule explicitly for s390x, and remove the ifdef from pickNaNMulAdd(). Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20241202131347.498124-21-peter.maydell@linaro.org
This commit is contained in:
parent
ac1254c4e7
commit
b07039a03e
2 changed files with 1 additions and 2 deletions
|
@ -511,8 +511,6 @@ static int pickNaNMulAdd(FloatClass a_cls, FloatClass b_cls, FloatClass c_cls,
|
|||
} else {
|
||||
rule = float_3nan_prop_s_cab;
|
||||
}
|
||||
#elif defined(TARGET_S390X)
|
||||
rule = float_3nan_prop_s_abc;
|
||||
#elif defined(TARGET_SPARC)
|
||||
rule = float_3nan_prop_s_cba;
|
||||
#elif defined(TARGET_XTENSA)
|
||||
|
|
|
@ -206,6 +206,7 @@ static void s390_cpu_reset_hold(Object *obj, ResetType type)
|
|||
set_float_detect_tininess(float_tininess_before_rounding,
|
||||
&env->fpu_status);
|
||||
set_float_2nan_prop_rule(float_2nan_prop_s_ab, &env->fpu_status);
|
||||
set_float_3nan_prop_rule(float_3nan_prop_s_abc, &env->fpu_status);
|
||||
set_float_infzeronan_rule(float_infzeronan_dnan_always,
|
||||
&env->fpu_status);
|
||||
/* fall through */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue