aboutsummaryrefslogtreecommitdiff
path: root/gold
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>2011-06-16 17:55:48 +0000
committerIan Lance Taylor <ian@airs.com>2011-06-16 17:55:48 +0000
commit9d3b06987a9f8e6c40bf90f502f57d1c2b6b10ed (patch)
tree1e9fbd3e78c2294fcde27a50f3b09a6e358d8abb /gold
parentbcd823f19e31e93df9818913b1c1313175125bc9 (diff)
downloadfsf-binutils-gdb-9d3b06987a9f8e6c40bf90f502f57d1c2b6b10ed.zip
fsf-binutils-gdb-9d3b06987a9f8e6c40bf90f502f57d1c2b6b10ed.tar.gz
fsf-binutils-gdb-9d3b06987a9f8e6c40bf90f502f57d1c2b6b10ed.tar.bz2
* symtab.cc (Warnings::issue_warning): Don't warn if relocation
occurs in same object.
Diffstat (limited to 'gold')
-rw-r--r--gold/ChangeLog5
-rw-r--r--gold/symtab.cc6
2 files changed, 11 insertions, 0 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog
index f0ca5e5..e628e49 100644
--- a/gold/ChangeLog
+++ b/gold/ChangeLog
@@ -1,3 +1,8 @@
+2011-06-16 Ian Lance Taylor <iant@google.com>
+
+ * symtab.cc (Warnings::issue_warning): Don't warn if relocation
+ occurs in same object.
+
2011-06-14 Alan Modra <amodra@gmail.com>
* po/POTFILES.in: Regenerate.
diff --git a/gold/symtab.cc b/gold/symtab.cc
index 92f83af..5d8c163 100644
--- a/gold/symtab.cc
+++ b/gold/symtab.cc
@@ -3282,6 +3282,12 @@ Warnings::issue_warning(const Symbol* sym,
size_t relnum, off_t reloffset) const
{
gold_assert(sym->has_warning());
+
+ // We don't want to issue a warning for a relocation against the
+ // symbol in the same object file in which the symbol is defined.
+ if (sym->object() == relinfo->object)
+ return;
+
Warning_table::const_iterator p = this->warnings_.find(sym->name());
gold_assert(p != this->warnings_.end());
gold_warning_at_location(relinfo, relnum, reloffset,