mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-05 14:59:45 +08:00
libgcc2.c (__udiv_w_sdiv): Use attribute ((always_inline)) when inlining it into other libgcc2 routines.
* libgcc2.c (__udiv_w_sdiv): Use attribute ((always_inline)) when inlining it into other libgcc2 routines. (__udivmoddi4): Likewise. From-SVN: r58450
This commit is contained in:
parent
4b2ece8fd4
commit
1ab9ba6286
@ -1,3 +1,9 @@
|
||||
2002-10-23 Ulrich Weigand <uweigand@de.ibm.com>
|
||||
|
||||
* libgcc2.c (__udiv_w_sdiv): Use attribute ((always_inline)) when
|
||||
inlining it into other libgcc2 routines.
|
||||
(__udivmoddi4): Likewise.
|
||||
|
||||
2002-10-22 Nathanael Nerode <neroden@gcc.gnu.org>
|
||||
|
||||
* doc/sourcebuild.texi (Test Suites): Improve.
|
||||
|
@ -377,7 +377,7 @@ __muldi3 (DWtype u, DWtype v)
|
||||
#if defined (sdiv_qrnnd)
|
||||
#if (defined (L_udivdi3) || defined (L_divdi3) || \
|
||||
defined (L_umoddi3) || defined (L_moddi3))
|
||||
static inline
|
||||
static inline __attribute__ ((__always_inline__))
|
||||
#endif
|
||||
UWtype
|
||||
__udiv_w_sdiv (UWtype *rp, UWtype a1, UWtype a0, UWtype d)
|
||||
@ -511,7 +511,7 @@ const UQItype __clz_tab[] =
|
||||
|
||||
#if (defined (L_udivdi3) || defined (L_divdi3) || \
|
||||
defined (L_umoddi3) || defined (L_moddi3))
|
||||
static inline
|
||||
static inline __attribute__ ((__always_inline__))
|
||||
#endif
|
||||
UDWtype
|
||||
__udivmoddi4 (UDWtype n, UDWtype d, UDWtype *rp)
|
||||
|
Loading…
Reference in New Issue
Block a user