summaryrefslogtreecommitdiff
path: root/libgcc/soft-fp/unordsf2.c
diff options
context:
space:
mode:
Diffstat (limited to 'libgcc/soft-fp/unordsf2.c')
-rw-r--r--libgcc/soft-fp/unordsf2.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libgcc/soft-fp/unordsf2.c b/libgcc/soft-fp/unordsf2.c
index 057f2c43a79..4d6be98a753 100644
--- a/libgcc/soft-fp/unordsf2.c
+++ b/libgcc/soft-fp/unordsf2.c
@@ -41,9 +41,7 @@ __unordsf2 (SFtype a, SFtype b)
FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_S (A, a);
FP_UNPACK_RAW_S (B, b);
- FP_CMP_UNORD_S (r, A, B);
- if (r && (FP_ISSIGNAN_S (A) || FP_ISSIGNAN_S (B)))
- FP_SET_EXCEPTION (FP_EX_INVALID);
+ FP_CMP_UNORD_S (r, A, B, 1);
FP_HANDLE_EXCEPTIONS;
return r;