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: Fix a typo in comments.


I checke in this patch.


H.J.
---
Index: ChangeLog
===================================================================
RCS file: /cvs/src/src/bfd/ChangeLog,v
retrieving revision 1.5498
diff -u -p -r1.5498 ChangeLog
--- ChangeLog	21 Oct 2011 15:13:35 -0000	1.5498
+++ ChangeLog	21 Oct 2011 16:16:23 -0000
@@ -1,3 +1,9 @@
+2011-10-21  H.J. Lu  <hongjiu.lu@intel.com>.
+
+	* elf32-i386.c (elf_i386_relocate_section): Fix a typo in
+	comments.
+	* elf64-x86-64.c (elf_x86_64_relocate_section): Likewise.
+
 2011-10-21  H.J. Lu  <hongjiu.lu@intel.com>
 
 	PR ld/13302
Index: elf32-i386.c
===================================================================
RCS file: /cvs/src/src/bfd/elf32-i386.c,v
retrieving revision 1.263
diff -u -p -r1.263 elf32-i386.c
--- elf32-i386.c	21 Oct 2011 15:13:36 -0000	1.263
+++ elf32-i386.c	21 Oct 2011 16:16:23 -0000
@@ -3250,7 +3250,7 @@ elf_i386_relocate_section (bfd *output_b
 
 	    case R_386_32:
 	      /* Generate dynamic relcoation only when there is a
-		 non-GOF reference in a shared object.  */
+		 non-GOT reference in a shared object.  */
 	      if (info->shared && h->non_got_ref)
 		{
 		  Elf_Internal_Rela outrel;
Index: elf64-x86-64.c
===================================================================
RCS file: /cvs/src/src/bfd/elf64-x86-64.c,v
retrieving revision 1.242
diff -u -p -r1.242 elf64-x86-64.c
--- elf64-x86-64.c	21 Oct 2011 15:13:36 -0000	1.242
+++ elf64-x86-64.c	21 Oct 2011 16:16:23 -0000
@@ -3156,7 +3156,7 @@ elf_x86_64_relocate_section (bfd *output
 		}
 
 	      /* Generate dynamic relcoation only when there is a
-		 non-GOF reference in a shared object.  */
+		 non-GOT reference in a shared object.  */
 	      if (info->shared && h->non_got_ref)
 		{
 		  Elf_Internal_Rela outrel;


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