summaryrefslogtreecommitdiff
path: root/gcc/config/fp-bit.h
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2003-03-02 13:11:15 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2003-03-02 13:11:15 +0000
commit2afdc5b370b7223db386b7898c5a1777cc92678f (patch)
tree265bde1c642c427bbff1f56d1c419d27224500c4 /gcc/config/fp-bit.h
parent0f0c858f33193ceacb549dd6496990b33d3f8011 (diff)
downloadgcc-2afdc5b370b7223db386b7898c5a1777cc92678f.tar.gz
* 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
Diffstat (limited to 'gcc/config/fp-bit.h')
-rw-r--r--gcc/config/fp-bit.h2
1 files changed, 1 insertions, 1 deletions
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