This is the mail archive of the binutils@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]

[patch][gold] Don't copy a std::vector.


Just a small optimization.

2015-02-04  Rafael Ãvila de EspÃndola <rafael.espindola@gmail.com>
  * object.cc (write_local_symbols): avoid std::vector copy.

Cheers,
Rafael
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]