aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@axis.com>2002-06-19 00:51:03 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2002-06-19 00:51:03 +0000
commitafd1930f1be510c40d90fe92a6c398cea897f5bf (patch)
treef1d97c74a9916989a1b3dd9018caf9919514b1c3
parent90227c696758020342932822ab5e131ad57629b8 (diff)
downloadgcc-afd1930f1be510c40d90fe92a6c398cea897f5bf.zip
gcc-afd1930f1be510c40d90fe92a6c398cea897f5bf.tar.gz
gcc-afd1930f1be510c40d90fe92a6c398cea897f5bf.tar.bz2
fp-bit.c (_fpmul_parts, [...]): Mark with attribute __always_inline__.
* config/fp-bit.c (_fpmul_parts, _fpdiv_parts): Mark with attribute __always_inline__. Co-Authored-By: Kaveh R. Ghazi <ghazi@caip.rutgers.edu> From-SVN: r54768
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/config/fp-bit.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index db446af..79fec5b 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-18 Hans-Peter Nilsson <hp@axis.com>
+ Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * config/fp-bit.c (_fpmul_parts, _fpdiv_parts): Mark with
+ attribute __always_inline__.
+
2002-06-18 Bob Wilson <bob.wilson@acm.org>
* config/xtensa/xtensa.h (FUNCTION_PROFILER): Respect flag_pic
diff --git a/gcc/config/fp-bit.c b/gcc/config/fp-bit.c
index 5da7a8e..3e42a4a 100644
--- a/gcc/config/fp-bit.c
+++ b/gcc/config/fp-bit.c
@@ -604,7 +604,7 @@ sub (FLO_type arg_a, FLO_type arg_b)
#endif /* L_addsub_sf || L_addsub_df */
#if defined(L_mul_sf) || defined(L_mul_df)
-static INLINE fp_number_type *
+static inline __attribute__ ((__always_inline__)) fp_number_type *
_fpmul_parts ( fp_number_type * a,
fp_number_type * b,
fp_number_type * tmp)
@@ -796,7 +796,7 @@ multiply (FLO_type arg_a, FLO_type arg_b)
#endif /* L_mul_sf || L_mul_df */
#if defined(L_div_sf) || defined(L_div_df)
-static INLINE fp_number_type *
+static inline __attribute__ ((__always_inline__)) fp_number_type *
_fpdiv_parts (fp_number_type * a,
fp_number_type * b)
{