summaryrefslogtreecommitdiff
path: root/soft-fp/unordtf2.c
diff options
context:
space:
mode:
Diffstat (limited to 'soft-fp/unordtf2.c')
-rw-r--r--soft-fp/unordtf2.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/soft-fp/unordtf2.c b/soft-fp/unordtf2.c
index 134b1d09b8..9d1bd916c8 100644
--- a/soft-fp/unordtf2.c
+++ b/soft-fp/unordtf2.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 "quad.h"
-int
-__unordtf2(TFtype a, TFtype b)
+CMPtype __unordtf2(TFtype a, TFtype b)
{
FP_DECL_Q(A);
FP_DECL_Q(B);
- int r;
+ CMPtype r;
FP_UNPACK_RAW_Q(A, a);
FP_UNPACK_RAW_Q(B, b);