diff options
| author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-02 13:11:15 +0000 |
|---|---|---|
| committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-02 13:11:15 +0000 |
| commit | 2afdc5b370b7223db386b7898c5a1777cc92678f (patch) | |
| tree | 265bde1c642c427bbff1f56d1c419d27224500c4 | |
| parent | 0f0c858f33193ceacb549dd6496990b33d3f8011 (diff) | |
| download | ppe42-gcc-2afdc5b370b7223db386b7898c5a1777cc92678f.tar.gz ppe42-gcc-2afdc5b370b7223db386b7898c5a1777cc92678f.zip | |
* fp-bit.h (float_to_usi): Fix condition wrapping prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@63658 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config/fp-bit.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cdf51841169..cef29a82fc1 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 247ef335610..0e8509eedf9 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 |

