aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2003-03-02 13:11:15 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2003-03-02 13:11:15 +0000
commit29efb633263ed76d05c7f99432315ffe48183e42 (patch)
tree265bde1c642c427bbff1f56d1c419d27224500c4 /gcc
parent5348742b6a937f7ec8bed7f2c22ba9288a16bc7f (diff)
downloadgcc-29efb633263ed76d05c7f99432315ffe48183e42.zip
gcc-29efb633263ed76d05c7f99432315ffe48183e42.tar.gz
gcc-29efb633263ed76d05c7f99432315ffe48183e42.tar.bz2
* fp-bit.h (float_to_usi): Fix condition wrapping prototype.
From-SVN: r63658
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/fp-bit.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index cdf5184..cef29a8 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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.
diff --git a/gcc/config/fp-bit.h b/gcc/config/fp-bit.h
index 247ef33..0e8509e 100644
--- a/gcc/config/fp-bit.h
+++ b/gcc/config/fp-bit.h
@@ -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