diff options
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/ldlang.c | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index ca27cc2..effacb0 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2014-10-13 Alan Modra <amodra@gmail.com> + + * ldlang.c (lang_add_section): Set up map_head.s and map_tail.s when + relocatable. + 2014-09-16 Kuan-Lin Chen <kuanlinchentw@gmail.com> * emultempl/nds32elf.em (nds32_elf_after_open): Do not keep diff --git a/ld/ldlang.c b/ld/ldlang.c index 899f710..5960e5c 100644 --- a/ld/ldlang.c +++ b/ld/ldlang.c @@ -2411,8 +2411,7 @@ lang_add_section (lang_statement_list_type *ptr, section->output_section = output->bfd_section; - if (!link_info.relocatable - && !map_head_is_link_order) + if (!map_head_is_link_order) { asection *s = output->bfd_section->map_tail.s; output->bfd_section->map_tail.s = section; |