mirror of
https://github.com/mii443/qemu.git
synced 2025-12-16 17:18:49 +00:00
softfloat: Add flag specific to sqrt(-x)
PowerPC has this flag, and it's easier to compute it here than after the fact. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20211119160502.17432-6-richard.henderson@linaro.org> Signed-off-by: Cédric Le Goater <clg@kaod.org>
This commit is contained in:
committed by
Cédric Le Goater
parent
10cc964030
commit
f8718aab89
@@ -156,6 +156,7 @@ enum {
|
||||
float_flag_invalid_imz = 0x0100, /* inf * 0 */
|
||||
float_flag_invalid_idi = 0x0200, /* inf / inf */
|
||||
float_flag_invalid_zdz = 0x0400, /* 0 / 0 */
|
||||
float_flag_invalid_sqrt = 0x0800, /* sqrt(-x) */
|
||||
};
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user