diff options
Diffstat (limited to 'gcc/config/soft-fp/eqtf2.c')
-rw-r--r-- | gcc/config/soft-fp/eqtf2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/soft-fp/eqtf2.c b/gcc/config/soft-fp/eqtf2.c index fd6ffd1..46240b7 100644 --- a/gcc/config/soft-fp/eqtf2.c +++ b/gcc/config/soft-fp/eqtf2.c @@ -1,6 +1,6 @@ /* Software floating-point emulation. Return 0 iff a == b, 1 otherwise - Copyright (C) 1997,1999,2006 Free Software Foundation, Inc. + Copyright (C) 1997,1999,2006,2007 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson (rth@cygnus.com) and Jakub Jelinek (jj@ultra.linux.cz). @@ -32,11 +32,11 @@ #include "soft-fp.h" #include "quad.h" -int __eqtf2(TFtype a, TFtype b) +CMPtype __eqtf2(TFtype a, TFtype b) { FP_DECL_EX; FP_DECL_Q(A); FP_DECL_Q(B); - int r; + CMPtype r; FP_UNPACK_RAW_Q(A, a); FP_UNPACK_RAW_Q(B, b); |