From 29efb633263ed76d05c7f99432315ffe48183e42 Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Sun, 2 Mar 2003 13:11:15 +0000 Subject: [PATCH] * fp-bit.h (float_to_usi): Fix condition wrapping prototype. From-SVN: r63658 --- gcc/ChangeLog | 4 ++++ gcc/config/fp-bit.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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 + + * fp-bit.h (float_to_usi): Fix condition wrapping prototype. + 2003-03-01 Kazu Hirata * 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 -- 2.43.5