diff options
Diffstat (limited to 'soft-fp/unordsf2.c')
-rw-r--r-- | soft-fp/unordsf2.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/soft-fp/unordsf2.c b/soft-fp/unordsf2.c index 8de7563566..6d0afe853e 100644 --- a/soft-fp/unordsf2.c +++ b/soft-fp/unordsf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 1 iff a or b is a NaN, 0 otherwise. - Copyright (C) 2006 Free Software Foundation, Inc. + Copyright (C) 2006,2007 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Joseph Myers (joseph@codesourcery.com). @@ -31,12 +31,11 @@ #include "soft-fp.h" #include "single.h" -int -__unordsf2(SFtype a, SFtype b) +CMPtype __unordsf2(SFtype a, SFtype b) { FP_DECL_S(A); FP_DECL_S(B); - int r; + CMPtype r; FP_UNPACK_RAW_S(A, a); FP_UNPACK_RAW_S(B, b); |