diff options
Diffstat (limited to 'soft-fp/unordsf2.c')
-rw-r--r-- | soft-fp/unordsf2.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/soft-fp/unordsf2.c b/soft-fp/unordsf2.c index 057f2c43a7..4d6be98a75 100644 --- a/soft-fp/unordsf2.c +++ b/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; |