aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2002-03-08 03:02:00 +0000
committerAlexandre Oliva <aoliva@gcc.gnu.org>2002-03-08 03:02:00 +0000
commit9535605841d885a2feef7de31496f9b40a3245fa (patch)
tree8c51294e218d1e2459ca8fa85a0e743af1fcd5a4 /gcc
parent12f61e776a1305b44ec367dcfb25180e2c269024 (diff)
downloadgcc-9535605841d885a2feef7de31496f9b40a3245fa.zip
gcc-9535605841d885a2feef7de31496f9b40a3245fa.tar.gz
gcc-9535605841d885a2feef7de31496f9b40a3245fa.tar.bz2
fp-bit.c (_unord_f2): Compile it in even if US_SOFTWARE_GOFAST is enabled.
* config/fp-bit.c (_unord_f2): Compile it in even if US_SOFTWARE_GOFAST is enabled. From-SVN: r50423
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog3
-rw-r--r--gcc/config/fp-bit.c4
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index fa565f7..26cdb9d 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,8 @@
2002-03-07 Alexandre Oliva <aoliva@redhat.com>
+ * config/fp-bit.c (_unord_f2): Compile it in even if
+ US_SOFTWARE_GOFAST is enabled.
+
* config/gofast.h (GOFAST_RENAME_LIBCALLS): Set gt and ge as
NULL_RTX. Set all HFmode operations as NULL_RTX.
* optabs.c (prepare_float_lib_cmp) <GT, GE, LT, LE>: If libfunc is
diff --git a/gcc/config/fp-bit.c b/gcc/config/fp-bit.c
index 94e11e7..4d39d91 100644
--- a/gcc/config/fp-bit.c
+++ b/gcc/config/fp-bit.c
@@ -1110,6 +1110,8 @@ _le_f2 (FLO_type arg_a, FLO_type arg_b)
}
#endif /* L_le_sf || L_le_df */
+#endif /* ! US_SOFTWARE_GOFAST */
+
#if defined(L_unord_sf) || defined(L_unord_df)
CMPtype
_unord_f2 (FLO_type arg_a, FLO_type arg_b)
@@ -1128,8 +1130,6 @@ _unord_f2 (FLO_type arg_a, FLO_type arg_b)
}
#endif /* L_unord_sf || L_unord_df */
-#endif /* ! US_SOFTWARE_GOFAST */
-
#if defined(L_si_to_sf) || defined(L_si_to_df)
FLO_type
si_to_float (SItype arg_a)