mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06: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:
parent
10cc964030
commit
f8718aab89
2 changed files with 2 additions and 1 deletions
|
@ -869,7 +869,7 @@ static void partsN(sqrt)(FloatPartsN *a, float_status *status,
|
|||
return;
|
||||
|
||||
d_nan:
|
||||
float_raise(float_flag_invalid, status);
|
||||
float_raise(float_flag_invalid | float_flag_invalid_sqrt, status);
|
||||
parts_default_nan(a, status);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue