This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] avoid std::vector copy.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=e0a1e121b39ac99e76b77b73cba1db40ef75c7c8

commit e0a1e121b39ac99e76b77b73cba1db40ef75c7c8
Author: Rafael �vila de Espíndola <rafael.espindola@gmail.com>
Date:   Tue Feb 17 10:47:02 2015 -0500

    avoid std::vector copy.

Diff:
---
 gold/ChangeLog | 4 ++++
 gold/object.cc | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/gold/ChangeLog b/gold/ChangeLog
index 67efa58..5a72e98 100644
--- a/gold/ChangeLog
+++ b/gold/ChangeLog
@@ -1,5 +1,9 @@
 2015-02-17  Rafael �vila de Espíndola <rafael.espindola@gmail.com>
 
+	* object.cc (write_local_symbols): avoid std::vector copy.
+
+2015-02-17  Rafael �vila de Espíndola <rafael.espindola@gmail.com>
+
 	* merge.cc (get_output_offset): Use upper_bound instead of lower_bound.
 
 2015-02-09  Mark Wielaard  <mjw@redhat.com>
diff --git a/gold/object.cc b/gold/object.cc
index 8f16fe7..c90b67e 100644
--- a/gold/object.cc
+++ b/gold/object.cc
@@ -2589,7 +2589,7 @@ Sized_relobj_file<size, big_endian>::write_local_symbols(
     dyn_oview = of->get_output_view(this->local_dynsym_offset_,
 				    dyn_output_size);
 
-  const Output_sections out_sections(this->output_sections());
+  const Output_sections& out_sections(this->output_sections());
 
   gold_assert(this->local_values_.size() == loccount);


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]