From 20855e86bf0d1da1729c64a7b36fd4d4048b0823 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Fri, 8 Feb 2013 17:46:31 +0000 Subject: [PATCH] * emultempl/metagelf.em (build_section_lists): Use sec_info_type rather than userdata->flags.just_syms. --- ld/ChangeLog | 5 +++++ ld/emultempl/metagelf.em | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ld/ChangeLog b/ld/ChangeLog index cf809f1..e8159d0 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2013-02-08 Markos Chandras + + * emultempl/metagelf.em (build_section_lists): Use sec_info_type + rather than userdata->flags.just_syms. + 2013-02-06 Sandra Loosemore Andrew Jenner diff --git a/ld/emultempl/metagelf.em b/ld/emultempl/metagelf.em index 8ab1272..21e3e94 100644 --- a/ld/emultempl/metagelf.em +++ b/ld/emultempl/metagelf.em @@ -205,7 +205,7 @@ build_section_lists (lang_statement_union_type *statement) { asection *i = statement->input_section.section; - if (!((lang_input_statement_type *) i->owner->usrdata)->flags.just_syms + if (i->sec_info_type != SEC_INFO_TYPE_JUST_SYMS && (i->flags & SEC_EXCLUDE) == 0 && i->output_section != NULL && i->output_section->owner == link_info.output_bfd) -- 2.7.4