From c4eb27e1db8ebff3c498871a715ffdd66e20880b Mon Sep 17 00:00:00 2001 From: Sriraman Tallam Date: Wed, 2 Apr 2014 16:46:02 -0700 Subject: [PATCH] 2014-04-02 Sriraman Tallam * icf.cc (get_section_contents): Replace copies of reloc vectors with (const) references. --- gold/ChangeLog | 5 +++++ gold/icf.cc | 16 ++++++++-------- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/gold/ChangeLog b/gold/ChangeLog index 7545ddb3090..4db6d851866 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,8 @@ +2014-04-02 Sriraman Tallam + + * icf.cc (get_section_contents): Replace copies of reloc + vectors with const references. + 2014-04-02 Cary Coutant * configure.ac (HAVE_PUBNAMES): Use C instead of C++. diff --git a/gold/icf.cc b/gold/icf.cc index f30eb41b60f..ad887154dd8 100644 --- a/gold/icf.cc +++ b/gold/icf.cc @@ -269,21 +269,21 @@ get_section_contents(bool first_iteration, if (it_reloc_info_list != reloc_info_list.end()) { - Icf::Sections_reachable_info v = + Icf::Sections_reachable_info &v = (it_reloc_info_list->second).section_info; // Stores the information of the symbol pointed to by the reloc. - Icf::Symbol_info s = (it_reloc_info_list->second).symbol_info; + const Icf::Symbol_info &s = (it_reloc_info_list->second).symbol_info; // Stores the addend and the symbol value. - Icf::Addend_info a = (it_reloc_info_list->second).addend_info; + Icf::Addend_info &a = (it_reloc_info_list->second).addend_info; // Stores the offset of the reloc. - Icf::Offset_info o = (it_reloc_info_list->second).offset_info; - Icf::Reloc_addend_size_info reloc_addend_size_info = + const Icf::Offset_info &o = (it_reloc_info_list->second).offset_info; + const Icf::Reloc_addend_size_info &reloc_addend_size_info = (it_reloc_info_list->second).reloc_addend_size_info; Icf::Sections_reachable_info::iterator it_v = v.begin(); - Icf::Symbol_info::iterator it_s = s.begin(); + Icf::Symbol_info::const_iterator it_s = s.begin(); Icf::Addend_info::iterator it_a = a.begin(); - Icf::Offset_info::iterator it_o = o.begin(); - Icf::Reloc_addend_size_info::iterator it_addend_size = + Icf::Offset_info::const_iterator it_o = o.begin(); + Icf::Reloc_addend_size_info::const_iterator it_addend_size = reloc_addend_size_info.begin(); for (; it_v != v.end(); ++it_v, ++it_s, ++it_a, ++it_o, ++it_addend_size) -- 2.30.2