mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
target/sparc: Set default NaN pattern explicitly
Set the default NaN pattern explicitly for SPARC, and remove the ifdef from parts64_default_nan. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20241202131347.498124-50-peter.maydell@linaro.org
This commit is contained in:
parent
5ab49c3a09
commit
45fb2cd61e
2 changed files with 3 additions and 4 deletions
|
@ -818,6 +818,8 @@ static void sparc_cpu_realizefn(DeviceState *dev, Error **errp)
|
|||
set_float_3nan_prop_rule(float_3nan_prop_s_cba, &env->fp_status);
|
||||
/* For inf * 0 + NaN, return the input NaN */
|
||||
set_float_infzeronan_rule(float_infzeronan_dnan_never, &env->fp_status);
|
||||
/* Default NaN value: sign bit clear, all frac bits set */
|
||||
set_float_default_nan_pattern(0b01111111, &env->fp_status);
|
||||
|
||||
cpu_exec_realizefn(cs, &local_err);
|
||||
if (local_err != NULL) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue