mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
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:
parent
4d9743afc8
commit
b672b05737
@ -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>
|
2010-03-10 Ian Lance Taylor <iant@google.com>
|
||||||
|
|
||||||
* reloc.cc (Sized_relobj::split_stack_adjust_reltype): Call the
|
* reloc.cc (Sized_relobj::split_stack_adjust_reltype): Call the
|
||||||
|
@ -253,7 +253,6 @@ Read_symbols::do_read_symbols(Workqueue* workqueue)
|
|||||||
this->dirindex_,
|
this->dirindex_,
|
||||||
this->mapfile_,
|
this->mapfile_,
|
||||||
this->input_argument_,
|
this->input_argument_,
|
||||||
this->input_group_,
|
|
||||||
obj,
|
obj,
|
||||||
NULL,
|
NULL,
|
||||||
this->this_blocker_,
|
this->this_blocker_,
|
||||||
@ -316,7 +315,6 @@ Read_symbols::do_read_symbols(Workqueue* workqueue)
|
|||||||
this->dirindex_,
|
this->dirindex_,
|
||||||
this->mapfile_,
|
this->mapfile_,
|
||||||
this->input_argument_,
|
this->input_argument_,
|
||||||
this->input_group_,
|
|
||||||
obj,
|
obj,
|
||||||
sd,
|
sd,
|
||||||
this->this_blocker_,
|
this->this_blocker_,
|
||||||
|
@ -128,12 +128,12 @@ class Add_symbols : public Task
|
|||||||
Add_symbols(Input_objects* input_objects, Symbol_table* symtab,
|
Add_symbols(Input_objects* input_objects, Symbol_table* symtab,
|
||||||
Layout* layout, Dirsearch* dirpath, int dirindex,
|
Layout* layout, Dirsearch* dirpath, int dirindex,
|
||||||
Mapfile* mapfile, const Input_argument* input_argument,
|
Mapfile* mapfile, const Input_argument* input_argument,
|
||||||
Input_group* input_group, Object* object,
|
Object* object,
|
||||||
Read_symbols_data* sd, Task_token* this_blocker,
|
Read_symbols_data* sd, Task_token* this_blocker,
|
||||||
Task_token* next_blocker)
|
Task_token* next_blocker)
|
||||||
: input_objects_(input_objects), symtab_(symtab), layout_(layout),
|
: input_objects_(input_objects), symtab_(symtab), layout_(layout),
|
||||||
dirpath_(dirpath), dirindex_(dirindex), mapfile_(mapfile),
|
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),
|
object_(object), sd_(sd), this_blocker_(this_blocker),
|
||||||
next_blocker_(next_blocker)
|
next_blocker_(next_blocker)
|
||||||
{ }
|
{ }
|
||||||
@ -163,7 +163,6 @@ private:
|
|||||||
int dirindex_;
|
int dirindex_;
|
||||||
Mapfile* mapfile_;
|
Mapfile* mapfile_;
|
||||||
const Input_argument* input_argument_;
|
const Input_argument* input_argument_;
|
||||||
Input_group* input_group_;
|
|
||||||
Object* object_;
|
Object* object_;
|
||||||
Read_symbols_data* sd_;
|
Read_symbols_data* sd_;
|
||||||
Task_token* this_blocker_;
|
Task_token* this_blocker_;
|
||||||
|
Loading…
Reference in New Issue
Block a user