fp-bit.c (_fpmul_parts, [...]): Mark with attribute __always_inline__.
authorHans-Peter Nilsson <hp@axis.com>
Wed, 19 Jun 2002 00:51:03 +0000 (00:51 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Wed, 19 Jun 2002 00:51:03 +0000 (00:51 +0000)
* 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

gcc/ChangeLog
gcc/config/fp-bit.c

index db446af5f7e0752ffe86d0cd1b0e5b798ddc36eb..79fec5bfd3b2a2221b3f9a2f9f03772678ef27e0 100644 (file)
@@ -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
index 5da7a8efe13884839f39fa7cfba028507dda67a6..3e42a4a899f30de610be86b4fca5a457e8fc97c5 100644 (file)
@@ -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)
 {