aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/arch/mips/math-emu/sp_fdp.c
diff options
context:
space:
mode:
authorMaciej W. Rozycki <macro@linux-mips.org>2015-04-03 23:25:30 +0100
committerRalf Baechle <ralf@linux-mips.org>2015-04-08 01:09:29 +0200
commit539bfb579babbe5a14b405370ecc99b4ed53bc4e (patch)
tree3ff8ef8e4a4d6796685b292f9a74f5fa1ecc7048 /arch/mips/math-emu/sp_fdp.c
parentMIPS: math-emu: Factor out NaN FP format conversions (diff)
downloadwireguard-linux-539bfb579babbe5a14b405370ecc99b4ed53bc4e.tar.xz
wireguard-linux-539bfb579babbe5a14b405370ecc99b4ed53bc4e.zip
MIPS: math-emu: Don't pass qNaNs through quieting handlers
Don't call the `ieee754sp_nanxcpt' and `ieee754dp_nanxcpt' sNaN quieting handlers for a qNaN supplied to floating-point format conversions or SQRT.S/SQRT.D instructions, or for a qNaN produced out of a negative operand supplied to SQRT.S/SQRT.D instructions. Return the qNaN right away in these cases. Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/9687/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/math-emu/sp_fdp.c')
-rw-r--r--arch/mips/math-emu/sp_fdp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/math-emu/sp_fdp.c b/arch/mips/math-emu/sp_fdp.c
index 4c0d0b4c4876..18a3f8c37136 100644
--- a/arch/mips/math-emu/sp_fdp.c
+++ b/arch/mips/math-emu/sp_fdp.c
@@ -50,7 +50,7 @@ union ieee754sp ieee754sp_fdp(union ieee754dp x)
nan = ieee754sp_nan_fdp(xs, xm);
if (!ieee754sp_isnan(nan))
nan = ieee754sp_indef();
- return ieee754sp_nanxcpt(nan);
+ return nan;
case IEEE754_CLASS_INF:
return ieee754sp_inf(xs);