diff options
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elf.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 098001e..a256f72 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2012-12-18 Alan Modra <amodra@gmail.com> + + * elf.c (swap_out_syms): Set shndx to SHN_ABS when not one of + the special MAP_* values. + 2012-12-17 Roland McGrath <mcgrathr@google.com> Alan Modra <amodra@gmail.com> @@ -6791,6 +6791,7 @@ swap_out_syms (bfd *abfd, shndx = elf_tdata (abfd)->symtab_shndx_section; break; default: + shndx = SHN_ABS; break; } } |