summaryrefslogtreecommitdiff
path: root/soft-fp/unorddf2.c
diff options
context:
space:
mode:
Diffstat (limited to 'soft-fp/unorddf2.c')
-rw-r--r--soft-fp/unorddf2.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/soft-fp/unorddf2.c b/soft-fp/unorddf2.c
index c83a563275..5ea63e2b97 100644
--- a/soft-fp/unorddf2.c
+++ b/soft-fp/unorddf2.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,11 +31,10 @@
#include "soft-fp.h"
#include "double.h"
-int
-__unorddf2(DFtype a, DFtype b)
+CMPtype __unorddf2(DFtype a, DFtype b)
{
FP_DECL_D(A); FP_DECL_D(B);
- int r;
+ CMPtype r;
FP_UNPACK_RAW_D(A, a);
FP_UNPACK_RAW_D(B, b);