* elf32-arm.c (elf32_arm_final_link): Process stub sections
exactly once.
This commit is contained in:
parent
8318bd9130
commit
cdb21a0a5b
2 changed files with 17 additions and 9 deletions
|
@ -1,3 +1,8 @@
|
|||
2010-08-26 Nathan Sidwell <nathan@codesourcery.com>
|
||||
|
||||
* elf32-arm.c (elf32_arm_final_link): Process stub sections
|
||||
exactly once.
|
||||
|
||||
2010-08-25 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
PR ld/11939
|
||||
|
|
|
@ -9443,9 +9443,12 @@ elf32_arm_final_link (bfd *abfd, struct bfd_link_info *info)
|
|||
/* Process stub sections (eg BE8 encoding, ...). */
|
||||
struct elf32_arm_link_hash_table *htab = elf32_arm_hash_table (info);
|
||||
int i;
|
||||
for(i=0; i<htab->top_id; i++) {
|
||||
for (i=0; i<htab->top_id; i++)
|
||||
{
|
||||
sec = htab->stub_group[i].stub_sec;
|
||||
if (sec) {
|
||||
/* Only process it once, in its link_sec slot. */
|
||||
if (sec && i == htab->stub_group[i].link_sec->id)
|
||||
{
|
||||
osec = sec->output_section;
|
||||
elf32_arm_write_section (abfd, info, sec, sec->contents);
|
||||
if (! bfd_set_section_contents (abfd, osec, sec->contents,
|
||||
|
|
Loading…
Reference in a new issue