aboutsummaryrefslogtreecommitdiff
path: root/ld/ldexp.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2010-05-14 03:15:20 +0000
committerAlan Modra <amodra@gmail.com>2010-05-14 03:15:20 +0000
commite092cb30d23375162df46825e5b5bc99a339245b (patch)
treea4808ab88f40435294c6f5580decd4f3966398db /ld/ldexp.c
parent6595d32bb250ef0d53a93c91774a284d04988f7e (diff)
downloadbinutils-e092cb30d23375162df46825e5b5bc99a339245b.zip
binutils-e092cb30d23375162df46825e5b5bc99a339245b.tar.gz
binutils-e092cb30d23375162df46825e5b5bc99a339245b.tar.bz2
PR ld/11583
* ldexp.c (exp_fold_tree_1): If assignment source expression is invalid, make the destination symbol undefined.
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 7fdf7f4..34d9eab 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;