From 1e26123001cd0ca128cb19fdfdd3ad179ade6401 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Fri, 24 Sep 2010 11:59:18 +0000 Subject: [PATCH] 2010-09-24 Thomas Schwinge * elflink.c (bfd_elf_reloc_symbol_deleted_p): Compare the symbol index to STN_UNDEF, not SHN_UNDEF. --- bfd/ChangeLog | 5 +++++ bfd/elflink.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 4c8d25200..22f9a2049 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2010-09-24 Thomas Schwinge + + * elflink.c (bfd_elf_reloc_symbol_deleted_p): Compare the symbol index + to STN_UNDEF, not SHN_UNDEF. + 2010-09-23 Bernd Schmidt * elf32-tic6x.c (elf32_tic6x_fake_sections): New function. diff --git a/bfd/elflink.c b/bfd/elflink.c index 4351e28cf..bdd69660a 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -12196,7 +12196,7 @@ bfd_elf_reloc_symbol_deleted_p (bfd_vma offset, void *cookie) continue; r_symndx = rcookie->rel->r_info >> rcookie->r_sym_shift; - if (r_symndx == SHN_UNDEF) + if (r_symndx == STN_UNDEF) return TRUE; if (r_symndx >= rcookie->locsymcount -- 2.11.4.GIT