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]

[Mach-O] Fix previous patch


A part of my previous patch was not added.
Fixed by this patchlet.

Tristan.

Fix missing update in previous patch.

bfd/
	* mach-o-x86-64.c (x86_64_howto_table): Change name here too.

diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 5111d62..6d1b78e 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,5 +1,9 @@
 2015-11-20  Tristan Gingold  <gingold@adacore.com>
 
+	* mach-o-x86-64.c (x86_64_howto_table): Change name here too.
+
+2015-11-20  Tristan Gingold  <gingold@adacore.com>
+
 	* targets.c (aarch64_mach_o_vec, arm_mach_o_vec): Declare.
 	(_bfd_target_vector): Add new vectors.
 	* reloc.c (BFD_RELOC_MACH_O_SUBTRACTOR32)
diff --git a/bfd/mach-o-x86-64.c b/bfd/mach-o-x86-64.c
index 05046d7..189ab23 100644
--- a/bfd/mach-o-x86-64.c
+++ b/bfd/mach-o-x86-64.c
@@ -101,11 +101,11 @@ static reloc_howto_type x86_64_howto_table[]=
 	NULL, "GOT_LOAD",
 	FALSE, 0xffffffff, 0xffffffff, TRUE),
   /* 8 */
-  HOWTO(BFD_RELOC_MACH_O_X86_64_SUBTRACTOR32, 0, 2, 32, FALSE, 0,
+  HOWTO(BFD_RELOC_MACH_O_SUBTRACTOR32, 0, 2, 32, FALSE, 0,
 	complain_overflow_bitfield,
 	NULL, "SUBTRACTOR32",
 	FALSE, 0xffffffff, 0xffffffff, FALSE),
-  HOWTO(BFD_RELOC_MACH_O_X86_64_SUBTRACTOR64, 0, 4, 64, FALSE, 0,
+  HOWTO(BFD_RELOC_MACH_O_SUBTRACTOR64, 0, 4, 64, FALSE, 0,
 	complain_overflow_bitfield,
 	NULL, "SUBTRACTOR64",
 	FALSE, MINUS_ONE, MINUS_ONE, FALSE),


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