mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
target/xtensa: Set FloatInfZeroNaNRule explicitly
Set the FloatInfZeroNaNRule explicitly for the xtensa target, so we can 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-11-peter.maydell@linaro.org
This commit is contained in:
parent
9a31b8d0ad
commit
67c0df045e
2 changed files with 3 additions and 1 deletions
|
@ -489,7 +489,7 @@ static int pickNaNMulAdd(FloatClass a_cls, FloatClass b_cls, FloatClass c_cls,
|
|||
/*
|
||||
* Temporarily fall back to ifdef ladder
|
||||
*/
|
||||
#if defined(TARGET_XTENSA) || defined(TARGET_HPPA) || \
|
||||
#if defined(TARGET_HPPA) || \
|
||||
defined(TARGET_I386) || defined(TARGET_LOONGARCH)
|
||||
/*
|
||||
* For LoongArch systems that conform to IEEE754-2008, the (inf,zero,nan)
|
||||
|
|
|
@ -133,6 +133,8 @@ static void xtensa_cpu_reset_hold(Object *obj, ResetType type)
|
|||
reset_mmu(env);
|
||||
cs->halted = env->runstall;
|
||||
#endif
|
||||
/* For inf * 0 + NaN, return the input NaN */
|
||||
set_float_infzeronan_rule(float_infzeronan_dnan_never, &env->fp_status);
|
||||
set_no_signaling_nans(!dfpu, &env->fp_status);
|
||||
xtensa_use_first_nan(env, !dfpu);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue