From 4193bc588b4e66da0ed502eaef6e7ce85272fb42 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Sat, 3 Dec 2016 20:54:57 +1030 Subject: try_copy_symbol_type node_class check * ldexp.c (try_copy_symbol_type): Remove unnecessary check. --- ld/ldexp.c | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'ld/ldexp.c') diff --git a/ld/ldexp.c b/ld/ldexp.c index cb5e093..c962c5e 100644 --- a/ld/ldexp.c +++ b/ld/ldexp.c @@ -990,16 +990,12 @@ is_align_conditional (const etree_type *tree) static void try_copy_symbol_type (struct bfd_link_hash_entry *h, etree_type *src) { - if (src->type.node_class == etree_name) - { - struct bfd_link_hash_entry *hsrc; + struct bfd_link_hash_entry *hsrc; - hsrc = bfd_link_hash_lookup (link_info.hash, src->name.name, - FALSE, FALSE, TRUE); - if (hsrc) - bfd_copy_link_hash_symbol_type (link_info.output_bfd, h, - hsrc); - } + hsrc = bfd_link_hash_lookup (link_info.hash, src->name.name, + FALSE, FALSE, TRUE); + if (hsrc != NULL) + bfd_copy_link_hash_symbol_type (link_info.output_bfd, h, hsrc); } static void -- cgit v1.1