diff options
author | Roland McGrath <roland@gnu.org> | 2013-10-11 21:11:49 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2013-10-11 21:11:49 +0000 |
commit | 43819297ce3e76908a840fa66159ca83c1560fe5 (patch) | |
tree | da989138c79924c1fdd4bc14c9d83311dbde72a1 /gold/layout.h | |
parent | 39d9ead7fb50de3049b68021ff70bc558636ab53 (diff) | |
download | gdb-43819297ce3e76908a840fa66159ca83c1560fe5.zip gdb-43819297ce3e76908a840fa66159ca83c1560fe5.tar.gz gdb-43819297ce3e76908a840fa66159ca83c1560fe5.tar.bz2 |
gold/
* i386.cc (Target_i386): Remove unused member dynbss_.
* arm.cc (Target_arm): Likewise.
* powerpc.cc (Target_powerpc): Likewise.
* sparc.cc (Target_sparc): Likewise.
* tilegx.cc (Target_tilegx): Likewise.
* x86_64.cc (Target_x86_64): Likewise.
* dwarf_reader.h (Dwarf_info_reader): Remove unused members
type_signature_, type_offset_.
* plugin.h (Plugin_hook): Remove unused member layout_.
* readsyms.h (Add_symbols): Remove unused members dirpath_, dirindex_,
mapfile_.
(Read_member): Remove unused members input_objects_, symtab_,
mapfile_, layout_.
(Check_library): Remove unused member symtab_.
* archive.h (Lib_group): Remove unused member lib_.
* archive.cc (Lib_group::Lib_group): Update initializer.
* incremental.h (Incremental_binary): Remove unused member target_.
(Incremental_script_entry): Removed unused member script_.
* layout.h (Write_symbols_task): Remove unused member input_objects_.
* icf.h (Icf): Remove unused member num_tracked_relocs.
Diffstat (limited to 'gold/layout.h')
-rw-r--r-- | gold/layout.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gold/layout.h b/gold/layout.h index f49ae24..792b748 100644 --- a/gold/layout.h +++ b/gold/layout.h @@ -1524,10 +1524,10 @@ class Write_symbols_task : public Task { public: Write_symbols_task(const Layout* layout, const Symbol_table* symtab, - const Input_objects* input_objects, + const Input_objects* /*input_objects*/, const Stringpool* sympool, const Stringpool* dynpool, Output_file* of, Task_token* final_blocker) - : layout_(layout), symtab_(symtab), input_objects_(input_objects), + : layout_(layout), symtab_(symtab), sympool_(sympool), dynpool_(dynpool), of_(of), final_blocker_(final_blocker) { } @@ -1550,7 +1550,6 @@ class Write_symbols_task : public Task private: const Layout* layout_; const Symbol_table* symtab_; - const Input_objects* input_objects_; const Stringpool* sympool_; const Stringpool* dynpool_; Output_file* of_; |