This is the mail archive of the binutils@sourceware.org mailing list for the binutils 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]

PATCH: Add missing "foo" after ".global"


Hi,

I checked in this patch to add missing "foo" after ".global".


H.J.
---
Index: ChangeLog
===================================================================
RCS file: /cvs/src/src/ld/ChangeLog,v
retrieving revision 1.2450
diff -u -p -r1.2450 ChangeLog
--- ChangeLog	31 May 2012 17:03:18 -0000	1.2450
+++ ChangeLog	31 May 2012 17:16:33 -0000
@@ -1,3 +1,8 @@
+2012-05-31  H.J. Lu  <hongjiu.lu@intel.com>
+
+	* ld-ifunc/ifunc-13a-x86-64.s: Add missing "foo" after ".global".
+	* ld-ifunc/ifunc-15-x86-64.s: Likewise.
+
 2012-05-30  Alan Modra  <amodra@gmail.com>
 
 	* ldlang.h (lang_output_section_statement_type): Rename
Index: testsuite/ld-ifunc/ifunc-13a-x86-64.s
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-ifunc/ifunc-13a-x86-64.s,v
retrieving revision 1.1
diff -u -p -r1.1 ifunc-13a-x86-64.s
--- testsuite/ld-ifunc/ifunc-13a-x86-64.s	6 Jan 2011 18:45:05 -0000	1.1
+++ testsuite/ld-ifunc/ifunc-13a-x86-64.s	31 May 2012 17:16:33 -0000
@@ -1,6 +1,6 @@
 	.text
         .type foo, @function
-	.global
+	.global foo
 foo:
         movl xxx(%rip), %eax
         ret
Index: testsuite/ld-ifunc/ifunc-15-x86-64.s
===================================================================
RCS file: /cvs/src/src/ld/testsuite/ld-ifunc/ifunc-15-x86-64.s,v
retrieving revision 1.1
diff -u -p -r1.1 ifunc-15-x86-64.s
--- testsuite/ld-ifunc/ifunc-15-x86-64.s	12 Sep 2011 18:17:36 -0000	1.1
+++ testsuite/ld-ifunc/ifunc-15-x86-64.s	31 May 2012 17:16:33 -0000
@@ -1,6 +1,6 @@
 	.text
         .type foo, @function
-	.global
+	.global foo
 foo:
         movl ifunc@GOTPCREL(%rip), %eax
         ret


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