From ad3d8a2f047cb50d8a18c01c1d0dad03e32df5d1 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Fri, 15 Mar 2013 07:51:32 +0000 Subject: * gc.h (gc_process_relocs): Don't look through function descriptors. * icf.cc (get_section_contents): Do so here instead. --- gold/icf.cc | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'gold/icf.cc') diff --git a/gold/icf.cc b/gold/icf.cc index 5935c5b..a58e34f 100644 --- a/gold/icf.cc +++ b/gold/icf.cc @@ -288,6 +288,25 @@ get_section_contents(bool first_iteration, for (; it_v != v.end(); ++it_v, ++it_s, ++it_a, ++it_o, ++it_addend_size) { + if (first_iteration + && it_v->first != NULL) + { + Symbol_location loc; + loc.object = it_v->first; + loc.shndx = it_v->second; + loc.offset = convert_types(it_a->first + + it_a->second); + // Look through function descriptors + parameters->target().function_location(&loc); + if (loc.shndx != it_v->second) + { + it_v->second = loc.shndx; + // Modify symvalue/addend to the code entry. + it_a->first = loc.offset; + it_a->second = 0; + } + } + // ADDEND_STR stores the symbol value and addend and offset, // each at most 16 hex digits long. it_a points to a pair // where first is the symbol value and second is the -- cgit v1.1