From: Richard Henderson <[email protected]> The unique e4m3 nan encoding is SNaN for Arm.
Reviewed-by: Peter Maydell <[email protected]> Signed-off-by: Richard Henderson <[email protected]> Message-id: [email protected] Signed-off-by: Peter Maydell <[email protected]> --- target/arm/cpu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/target/arm/cpu.c b/target/arm/cpu.c index 10daca0ad6..419e0b3ed4 100644 --- a/target/arm/cpu.c +++ b/target/arm/cpu.c @@ -326,6 +326,7 @@ static void arm_init_fp_status(float_status *s) { memset(s, 0, sizeof(*s)); arm_set_default_fp_behaviours(s); + set_float_e4m3_nan_is_snan(true, s); /* We want 0 for all other settings. */ } -- 2.43.0
