OSDN Git Service

* fp-bit.h (float_to_usi): Fix condition wrapping prototype.
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 2 Mar 2003 13:11:15 +0000 (13:11 +0000)
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 2 Mar 2003 13:11:15 +0000 (13:11 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@63658 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/fp-bit.h

index cdf5184..cef29a8 100644 (file)
@@ -1,3 +1,7 @@
+2003-03-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * fp-bit.h (float_to_usi): Fix condition wrapping prototype.
+
 2003-03-01  Kazu Hirata  <kazu@cs.umass.edu>
 
        * config/h8300/h8300.md (a peephole2): Remove dead code.
index 247ef33..0e8509e 100644 (file)
@@ -479,7 +479,7 @@ extern SItype float_to_si (FLO_type);
 #endif
 
 #if defined(L_sf_to_usi) || defined(L_df_to_usi) || defined(L_tf_to_usi)
-#ifdef US_SOFTWARE_GOFAST
+#if defined(US_SOFTWARE_GOFAST) || defined(L_tf_to_usi)
 extern USItype float_to_usi (FLO_type);
 #endif
 #endif