summaryrefslogtreecommitdiff
path: root/ld/ldexp.c
diff options
context:
space:
mode:
Diffstat (limited to 'ld/ldexp.c')
-rw-r--r--ld/ldexp.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/ld/ldexp.c b/ld/ldexp.c
index 7fdf7f4058..34d9eabde7 100644
--- a/ld/ldexp.c
+++ b/ld/ldexp.c
@@ -830,6 +830,14 @@ exp_fold_tree_1 (etree_type *tree)
hsrc);
}
}
+ else if (expld.phase == lang_final_phase_enum)
+ {
+ h = bfd_link_hash_lookup (link_info.hash, tree->assign.dst,
+ FALSE, FALSE, TRUE);
+ if (h != NULL
+ && h->type == bfd_link_hash_new)
+ h->type = bfd_link_hash_undefined;
+ }
}
break;