diff options
author | Alan Modra <amodra@bigpond.net.au> | 2010-10-25 06:22:50 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2010-10-25 06:22:50 +0000 |
commit | 2acee059efbf0528c520e2a49faee9e00c123839 (patch) | |
tree | b08bc24e9e5c09410f677f9fff5f3fd4f31fc9f4 /ld | |
parent | 17a8c93a46b89a6e8a25090ee093e5f7f87b312a (diff) | |
download | binutils-redhat-2acee059efbf0528c520e2a49faee9e00c123839.tar.gz |
* plugin.c (plugin_get_ir_dummy_bfd): Set bfd_use_reserved_id.
Formatting.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/plugin.c | 12 |
2 files changed, 12 insertions, 5 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 0b0e607393..a82f4d78dc 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2010-10-25 Alan Modra <amodra@gmail.com> + + * plugin.c (plugin_get_ir_dummy_bfd): Set bfd_use_reserved_id. + Formatting. + 2010-10-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> * emulparams/elf32_sparc_sol2.sh (OUTPUT_FORMAT): Set to diff --git a/ld/plugin.c b/ld/plugin.c index efc520f707..f03932c096 100644 --- a/ld/plugin.c +++ b/ld/plugin.c @@ -224,16 +224,18 @@ bfd * plugin_get_ir_dummy_bfd (const char *name, bfd *srctemplate) { asection *sec; - bfd *abfd = bfd_create ( - concat (name, IRONLY_SUFFIX, (const char *)NULL), - srctemplate); + bfd *abfd; + + bfd_use_reserved_id = 1; + abfd = bfd_create (concat (name, IRONLY_SUFFIX, (const char *)NULL), + srctemplate); bfd_set_arch_info (abfd, bfd_get_arch_info (srctemplate)); bfd_make_writable (abfd); /* Create a minimal set of sections to own the symbols. */ sec = bfd_make_section_old_way (abfd, ".text"); bfd_set_section_flags (abfd, sec, - SEC_CODE | SEC_HAS_CONTENTS | SEC_READONLY - | SEC_ALLOC | SEC_LOAD | SEC_KEEP); + (SEC_CODE | SEC_HAS_CONTENTS | SEC_READONLY + | SEC_ALLOC | SEC_LOAD | SEC_KEEP)); sec->output_section = sec; sec->output_offset = 0; return abfd; |