aboutsummaryrefslogtreecommitdiff
path: root/gold
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>2010-06-27 06:17:36 +0000
committerIan Lance Taylor <ian@airs.com>2010-06-27 06:17:36 +0000
commite5ca47baff1a8d8e3113d0a41d1340357c91e4c3 (patch)
tree7f6c6dd2877745557788c17f21708d93bb12efc2 /gold
parentc7e2358a8849d7540212543e1a2acbac648cb973 (diff)
downloadfsf-binutils-gdb-e5ca47baff1a8d8e3113d0a41d1340357c91e4c3.zip
fsf-binutils-gdb-e5ca47baff1a8d8e3113d0a41d1340357c91e4c3.tar.gz
fsf-binutils-gdb-e5ca47baff1a8d8e3113d0a41d1340357c91e4c3.tar.bz2
* symtab.cc (detect_odr_violations): When reporting an ODR
violation, report an object where the symbol is defined.
Diffstat (limited to 'gold')
-rw-r--r--gold/ChangeLog5
-rw-r--r--gold/symtab.cc23
2 files changed, 21 insertions, 7 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog
index 50c1aff..c1f4981 100644
--- a/gold/ChangeLog
+++ b/gold/ChangeLog
@@ -1,3 +1,8 @@
+2010-06-26 Jeffrey Yaskin <jyasskin@google.com>
+
+ * symtab.cc (detect_odr_violations): When reporting an ODR
+ violation, report an object where the symbol is defined.
+
2010-06-25 Doug Kwan <dougkwan@google.com>
* arm.cc (Target_arm::can_check_for_functions_pointers): Return true.
diff --git a/gold/symtab.cc b/gold/symtab.cc
index 3f85f6c..c721ae4 100644
--- a/gold/symtab.cc
+++ b/gold/symtab.cc
@@ -3014,8 +3014,11 @@ Symbol_table::detect_odr_violations(const Task* task,
++it)
{
const char* symbol_name = it->first;
- // We use a sorted set so the output is deterministic.
- std::set<std::string, Odr_violation_compare> line_nums;
+ // Maps from symbol location to a sample object file we found
+ // that location in. We use a sorted map so the location order
+ // is deterministic, but we only store an arbitrary object file
+ // to avoid copying lots of names.
+ std::map<std::string, std::string, Odr_violation_compare> line_nums;
for (Unordered_set<Symbol_location, Symbol_location_hash>::const_iterator
locs = it->second.begin();
@@ -3034,7 +3037,11 @@ Symbol_table::detect_odr_violations(const Task* task,
std::string lineno = Dwarf_line_info::one_addr2line(
locs->object, locs->shndx, locs->offset, 16);
if (!lineno.empty())
- line_nums.insert(lineno);
+ {
+ std::string& sample_object = line_nums[lineno];
+ if (sample_object.empty())
+ sample_object = locs->object->name();
+ }
}
if (line_nums.size() > 1)
@@ -3042,10 +3049,12 @@ Symbol_table::detect_odr_violations(const Task* task,
gold_warning(_("while linking %s: symbol '%s' defined in multiple "
"places (possible ODR violation):"),
output_file_name, demangle(symbol_name).c_str());
- for (std::set<std::string>::const_iterator it2 = line_nums.begin();
- it2 != line_nums.end();
- ++it2)
- fprintf(stderr, " %s\n", it2->c_str());
+ for (std::map<std::string, std::string>::const_iterator it2 =
+ line_nums.begin();
+ it2 != line_nums.end();
+ ++it2)
+ fprintf(stderr, _(" %s from %s\n"),
+ it2->first.c_str(), it2->second.c_str());
}
}
// We only call one_addr2line() in this function, so we can clear its cache.