From e0938e86a94028840ad679a5f4af53c0dc142ef1 Mon Sep 17 00:00:00 2001 From: ghazi Date: Wed, 19 Jun 2002 00:51:03 +0000 Subject: [PATCH] * config/fp-bit.c (_fpmul_parts, _fpdiv_parts): Mark with attribute __always_inline__. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54768 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 6 ++++++ gcc/config/fp-bit.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index db446af5f7e0..79fec5bfd3b2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2002-06-18 Hans-Peter Nilsson + Kaveh R. Ghazi + + * config/fp-bit.c (_fpmul_parts, _fpdiv_parts): Mark with + attribute __always_inline__. + 2002-06-18 Bob Wilson * config/xtensa/xtensa.h (FUNCTION_PROFILER): Respect flag_pic diff --git a/gcc/config/fp-bit.c b/gcc/config/fp-bit.c index 5da7a8efe138..3e42a4a899f3 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) { -- 2.47.2