diff options
author | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-08 03:02:00 +0000 |
---|---|---|
committer | aoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-08 03:02:00 +0000 |
commit | f4a030baba6e643492f1e23411c39877272bbc87 (patch) | |
tree | 8c51294e218d1e2459ca8fa85a0e743af1fcd5a4 /gcc/config/fp-bit.c | |
parent | c81364d2018ff50913cff48129266e96b8a48b2a (diff) | |
download | gcc-f4a030baba6e643492f1e23411c39877272bbc87.tar.gz |
* config/fp-bit.c (_unord_f2): Compile it in even if
US_SOFTWARE_GOFAST is enabled.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@50423 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/fp-bit.c')
-rw-r--r-- | gcc/config/fp-bit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/fp-bit.c b/gcc/config/fp-bit.c index 94e11e7e3d7..4d39d912876 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) |