2010-03-15 Rafael Espindola <espindola@google.com>

* readsyms.cc (Read_symbols::do_read_symbols): Update calls to
	Add_symbols' constructor.
	* readsyms.h (Add_symbols): Remove the input_group member.
This commit is contained in:
Rafael Ávila de Espíndola 2010-03-15 14:46:16 +00:00
parent 4d9743afc8
commit b672b05737
3 changed files with 8 additions and 5 deletions

View file

@ -1,3 +1,9 @@
2010-03-15 Rafael Espindola <espindola@google.com>
* readsyms.cc (Read_symbols::do_read_symbols): Update calls to
Add_symbols' constructor.
* readsyms.h (Add_symbols): Remove the input_group member.
2010-03-10 Ian Lance Taylor <iant@google.com>
* reloc.cc (Sized_relobj::split_stack_adjust_reltype): Call the

View file

@ -253,7 +253,6 @@ Read_symbols::do_read_symbols(Workqueue* workqueue)
this->dirindex_,
this->mapfile_,
this->input_argument_,
this->input_group_,
obj,
NULL,
this->this_blocker_,
@ -316,7 +315,6 @@ Read_symbols::do_read_symbols(Workqueue* workqueue)
this->dirindex_,
this->mapfile_,
this->input_argument_,
this->input_group_,
obj,
sd,
this->this_blocker_,

View file

@ -128,12 +128,12 @@ class Add_symbols : public Task
Add_symbols(Input_objects* input_objects, Symbol_table* symtab,
Layout* layout, Dirsearch* dirpath, int dirindex,
Mapfile* mapfile, const Input_argument* input_argument,
Input_group* input_group, Object* object,
Object* object,
Read_symbols_data* sd, Task_token* this_blocker,
Task_token* next_blocker)
: input_objects_(input_objects), symtab_(symtab), layout_(layout),
dirpath_(dirpath), dirindex_(dirindex), mapfile_(mapfile),
input_argument_(input_argument), input_group_(input_group),
input_argument_(input_argument),
object_(object), sd_(sd), this_blocker_(this_blocker),
next_blocker_(next_blocker)
{ }
@ -163,7 +163,6 @@ private:
int dirindex_;
Mapfile* mapfile_;
const Input_argument* input_argument_;
Input_group* input_group_;
Object* object_;
Read_symbols_data* sd_;
Task_token* this_blocker_;