aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2011-02-24 22:58:05 +0000
committerH.J. Lu <hjl.tools@gmail.com>2011-02-24 22:58:05 +0000
commit8ff09c128e068b93ad4a6fca96389a29c214e31d (patch)
tree23b2764006bf27d3dd69f1a0756912570b64963f /ld
parent12c1418efb95a30180a54c95273891495855d626 (diff)
downloadfsf-binutils-gdb-8ff09c128e068b93ad4a6fca96389a29c214e31d.zip
fsf-binutils-gdb-8ff09c128e068b93ad4a6fca96389a29c214e31d.tar.gz
fsf-binutils-gdb-8ff09c128e068b93ad4a6fca96389a29c214e31d.tar.bz2
Don't mark entry symbol IR only.
2011-02-24 H.J. Lu <hongjiu.lu@intel.com> PR ld/12507 * plugin.c (get_symbols): Don't mark entry symbol IR only.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog5
-rw-r--r--ld/plugin.c6
2 files changed, 9 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 7b3d9bd..c672209 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,8 @@
+2011-02-24 H.J. Lu <hongjiu.lu@intel.com>
+
+ PR ld/12507
+ * plugin.c (get_symbols): Don't mark entry symbol IR only.
+
2011-02-18 John David Anglin <dave.anglin@nrc-cnnrc.gc.ca>
PR ld/12376
diff --git a/ld/plugin.c b/ld/plugin.c
index 86d80ca..6e3f923 100644
--- a/ld/plugin.c
+++ b/ld/plugin.c
@@ -493,8 +493,10 @@ get_symbols (const void *handle, int nsyms, struct ld_plugin_symbol *syms)
even potentially-referenced, perhaps in a future final link if
this is a partial one, perhaps dynamically at load-time if the
symbol is externally visible. */
- ironly = !is_visible_from_outside (&syms[n], owner_sec, blhe)
- && !bfd_hash_lookup (non_ironly_hash, syms[n].name, FALSE, FALSE);
+ ironly = (!is_visible_from_outside (&syms[n], owner_sec, blhe)
+ && !bfd_hash_lookup (non_ironly_hash, syms[n].name,
+ FALSE, FALSE)
+ && strcmp (syms[n].name, entry_symbol.name) != 0);
/* If it was originally undefined or common, then it has been
resolved; determine how. */