* object.cc (Sized_relobj::do_add_symbols): Always pass

local_symbol_count_ to add_from_relobj.
This commit is contained in:
Ian Lance Taylor 2008-04-19 19:34:41 +00:00
parent 4c94d6ae7b
commit 7fcd3aa988
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,8 @@
2008-04-19 Ian Lance Taylor <iant@google.com>
* object.cc (Sized_relobj::do_add_symbols): Always pass
local_symbol_count_ to add_from_relobj.
* testsuite/Makefile.am (many_sections_check.h): Only check one in
every thousand variables.
* testsuite/Makefile.in: Rebuild.

View File

@ -946,10 +946,7 @@ Sized_relobj<size, big_endian>::do_add_symbols(Symbol_table* symtab,
reinterpret_cast<const char*>(sd->symbol_names->data());
symtab->add_from_relobj(this,
sd->symbols->data() + sd->external_symbols_offset,
symcount,
(sd->external_symbols_offset == 0
? this->local_symbol_count_
: 0),
symcount, this->local_symbol_count_,
sym_names, sd->symbol_names_size,
&this->symbols_);