Commit 1ab9ba62 by Ulrich Weigand Committed by Ulrich Weigand

libgcc2.c (__udiv_w_sdiv): Use attribute ((always_inline)) when inlining it into…

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
parent 4b2ece8f
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> 2002-10-22 Nathanael Nerode <neroden@gcc.gnu.org>
* doc/sourcebuild.texi (Test Suites): Improve. * doc/sourcebuild.texi (Test Suites): Improve.
......
...@@ -377,7 +377,7 @@ __muldi3 (DWtype u, DWtype v) ...@@ -377,7 +377,7 @@ __muldi3 (DWtype u, DWtype v)
#if defined (sdiv_qrnnd) #if defined (sdiv_qrnnd)
#if (defined (L_udivdi3) || defined (L_divdi3) || \ #if (defined (L_udivdi3) || defined (L_divdi3) || \
defined (L_umoddi3) || defined (L_moddi3)) defined (L_umoddi3) || defined (L_moddi3))
static inline static inline __attribute__ ((__always_inline__))
#endif #endif
UWtype UWtype
__udiv_w_sdiv (UWtype *rp, UWtype a1, UWtype a0, UWtype d) __udiv_w_sdiv (UWtype *rp, UWtype a1, UWtype a0, UWtype d)
...@@ -511,7 +511,7 @@ const UQItype __clz_tab[] = ...@@ -511,7 +511,7 @@ const UQItype __clz_tab[] =
#if (defined (L_udivdi3) || defined (L_divdi3) || \ #if (defined (L_udivdi3) || defined (L_divdi3) || \
defined (L_umoddi3) || defined (L_moddi3)) defined (L_umoddi3) || defined (L_moddi3))
static inline static inline __attribute__ ((__always_inline__))
#endif #endif
UDWtype UDWtype
__udivmoddi4 (UDWtype n, UDWtype d, UDWtype *rp) __udivmoddi4 (UDWtype n, UDWtype d, UDWtype *rp)
......
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