target/sparc: Set Float3NaNPropRule explicitly
Set the Float3NaNPropRule explicitly for SPARC, 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-22-peter.maydell@linaro.org
This commit is contained in:
parent
b07039a03e
commit
49866dcb59
@ -511,8 +511,6 @@ static int pickNaNMulAdd(FloatClass a_cls, FloatClass b_cls, FloatClass c_cls,
|
|||||||
} else {
|
} else {
|
||||||
rule = float_3nan_prop_s_cab;
|
rule = float_3nan_prop_s_cab;
|
||||||
}
|
}
|
||||||
#elif defined(TARGET_SPARC)
|
|
||||||
rule = float_3nan_prop_s_cba;
|
|
||||||
#elif defined(TARGET_XTENSA)
|
#elif defined(TARGET_XTENSA)
|
||||||
if (status->use_first_nan) {
|
if (status->use_first_nan) {
|
||||||
rule = float_3nan_prop_abc;
|
rule = float_3nan_prop_abc;
|
||||||
|
@ -814,6 +814,8 @@ static void sparc_cpu_realizefn(DeviceState *dev, Error **errp)
|
|||||||
* the CPU state struct so it won't get zeroed on reset.
|
* the CPU state struct so it won't get zeroed on reset.
|
||||||
*/
|
*/
|
||||||
set_float_2nan_prop_rule(float_2nan_prop_s_ba, &env->fp_status);
|
set_float_2nan_prop_rule(float_2nan_prop_s_ba, &env->fp_status);
|
||||||
|
/* For fused-multiply add, prefer SNaN over QNaN, then C->B->A */
|
||||||
|
set_float_3nan_prop_rule(float_3nan_prop_s_cba, &env->fp_status);
|
||||||
/* For inf * 0 + NaN, return the input NaN */
|
/* For inf * 0 + NaN, return the input NaN */
|
||||||
set_float_infzeronan_rule(float_infzeronan_dnan_never, &env->fp_status);
|
set_float_infzeronan_rule(float_infzeronan_dnan_never, &env->fp_status);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user