Commit 29efb633 by Kaveh R. Ghazi Committed by Kaveh Ghazi

* fp-bit.h (float_to_usi): Fix condition wrapping prototype.

From-SVN: r63658
parent 5348742b
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> 2003-03-01 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.md (a peephole2): Remove dead code. * config/h8300/h8300.md (a peephole2): Remove dead code.
......
...@@ -479,7 +479,7 @@ extern SItype float_to_si (FLO_type); ...@@ -479,7 +479,7 @@ extern SItype float_to_si (FLO_type);
#endif #endif
#if defined(L_sf_to_usi) || defined(L_df_to_usi) || defined(L_tf_to_usi) #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); extern USItype float_to_usi (FLO_type);
#endif #endif
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment