diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 4d8db193f2e..40ddfa14d5e 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2019-10-15 Alan Modra + + PR 25100 + * elf64-ppc.c (sfpr_define): Delete dead code that triggered a warning. + 2019-10-15 Alan Modra * bfd.c (bfd_check_compression_header): Check for powers of two diff --git a/bfd/elf64-ppc.c b/bfd/elf64-ppc.c index 2731e78618d..4ece6fbde01 100644 --- a/bfd/elf64-ppc.c +++ b/bfd/elf64-ppc.c @@ -5837,9 +5837,7 @@ sfpr_define (struct bfd_link_info *info, s = elf_link_hash_lookup (&htab->elf, buf, TRUE, TRUE, FALSE); if (s == NULL) return FALSE; - if (s->root.type == bfd_link_hash_new - || (s->root.type = bfd_link_hash_defined - && s->root.u.def.section == stub_sec)) + if (s->root.type == bfd_link_hash_new) { s->root.type = bfd_link_hash_defined; s->root.u.def.section = stub_sec;