This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[ARM] Missing underscore in LIB1ASMFUNCS


The attached patch adds a missing underscore to some of the ARM target clzsi2 
LIB1ASMFUNCS entries.  This only effects crufty old targets, so didn't show 
up in testing.

Paul

2008-08-27  Paul Brook  <paul@codesourcery.com>

	* config/arm/t-arm-coff (LIB1ASMFUNCS): Add missing undescrore on
	_clzsi2.
	* config/arm/t-linux (LIB1ASMFUNCS): Ditto.
Index: gcc/config/arm/t-arm-coff
===================================================================
--- gcc/config/arm/t-arm-coff	(revision 139623)
+++ gcc/config/arm/t-arm-coff	(working copy)
@@ -1,5 +1,5 @@
 LIB1ASMSRC = arm/lib1funcs.asm
-LIB1ASMFUNCS = _udivsi3 _divsi3 _umodsi3 _modsi3 _dvmd_tls _bb_init_func _call_via_rX _interwork_call_via_rX clzsi2 _clzdi2
+LIB1ASMFUNCS = _udivsi3 _divsi3 _umodsi3 _modsi3 _dvmd_tls _bb_init_func _call_via_rX _interwork_call_via_rX _clzsi2 _clzdi2
 
 # We want fine grained libraries, so use the new code to build the
 # floating point emulation libraries.
Index: gcc/config/arm/t-linux
===================================================================
--- gcc/config/arm/t-linux	(revision 139623)
+++ gcc/config/arm/t-linux	(working copy)
@@ -3,7 +3,7 @@
 TARGET_LIBGCC2_CFLAGS = -fomit-frame-pointer -fPIC
 
 LIB1ASMSRC = arm/lib1funcs.asm
-LIB1ASMFUNCS = _udivsi3 _divsi3 _umodsi3 _modsi3 _dvmd_lnx clzsi2 _clzdi2
+LIB1ASMFUNCS = _udivsi3 _divsi3 _umodsi3 _modsi3 _dvmd_lnx _clzsi2 _clzdi2
 
 # MULTILIB_OPTIONS = mhard-float/msoft-float
 # MULTILIB_DIRNAMES = hard-float soft-float

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]