diff options
author | Nick Clifton <nickc@redhat.com> | 2016-03-29 10:24:16 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2016-03-29 10:24:16 +0100 |
commit | ed3056ebdb9795446157af03d3e08fbb93c1b01d (patch) | |
tree | 4c08c9251641b7bf08e7aa644d682cfe17873180 /bfd/elf32-bfin.c | |
parent | ed754a135894b8f9cc63757689226d30f46d18d2 (diff) | |
download | gdb-ed3056ebdb9795446157af03d3e08fbb93c1b01d.zip gdb-ed3056ebdb9795446157af03d3e08fbb93c1b01d.tar.gz gdb-ed3056ebdb9795446157af03d3e08fbb93c1b01d.tar.bz2 |
Relax assertion in BFIN linker to allow for discard GOT relocs.
PR 17334
* elf32-bfin.c (elf32_bfinfdpic_finish_dynamic_sections): Relax
assertion on the size of the got section to allow it to be bigger
than the number of relocs.
Diffstat (limited to 'bfd/elf32-bfin.c')
-rw-r--r-- | bfd/elf32-bfin.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/bfd/elf32-bfin.c b/bfd/elf32-bfin.c index 7cc8b6d..b2fcf38 100644 --- a/bfd/elf32-bfin.c +++ b/bfd/elf32-bfin.c @@ -4457,7 +4457,13 @@ elf32_bfinfdpic_finish_dynamic_sections (bfd *output_bfd, if (bfinfdpic_got_section (info)) { BFD_ASSERT (bfinfdpic_gotrel_section (info)->size - == (bfinfdpic_gotrel_section (info)->reloc_count + /* PR 17334: It appears that the GOT section can end up + being bigger than the number of relocs. Presumably + because some relocs have been deleted. A test case has + yet to be generated for verify this, but in the meantime + the test below has been changed from == to >= so that + applications can continue to be built. */ + >= (bfinfdpic_gotrel_section (info)->reloc_count * sizeof (Elf32_External_Rel))); if (bfinfdpic_gotfixup_section (info)) |