From: H.J. Lu Date: Mon, 31 Aug 2009 18:45:26 +0000 (+0000) Subject: 2009-08-31 H.J. Lu X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f1c2d4afbe03f4303f200ba418a446da410cba17;p=binutils-gdb.git 2009-08-31 H.J. Lu PR gas/10570 * write.c (write_object_file): Revert the accidental change made in revision 1.124 on 2009-08-17. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index d318c92f094..9884c5de484 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2009-08-31 H.J. Lu + + PR gas/10570 + * write.c (write_object_file): Revert the accidental change + made in revision 1.124 on 2009-08-17. + 2009-08-31 Jan Beulich * config/obj-elf.c (obj_elf_change_section): Set default type diff --git a/gas/write.c b/gas/write.c index 4f1dc4c3d45..f6b726091e2 100644 --- a/gas/write.c +++ b/gas/write.c @@ -1894,12 +1894,13 @@ write_object_file (void) #endif bfd_map_over_sections (stdoutput, write_relocs, (char *) 0); -#ifdef tc_frob_file_after_reloc +#ifdef tc_frob_file_after_relocs tc_frob_file_after_relocs (); #endif #ifdef obj_frob_file_after_relocs obj_frob_file_after_relocs (); #endif + bfd_map_over_sections (stdoutput, write_contents, (char *) 0); }