diff options
author | Doug Kwan <dougkwan@google.com> | 2009-12-03 23:13:55 +0000 |
---|---|---|
committer | Doug Kwan <dougkwan@google.com> | 2009-12-03 23:13:55 +0000 |
commit | f59f41f3e62c417ef569b65a01cc2e657ec9a94f (patch) | |
tree | a6f7f1e6150845fd7ed36e2e08634edf5850f71c /gold/layout.cc | |
parent | 6bfd70b9fdf629da7ba33b644c889668c7473bc5 (diff) | |
download | gdb-f59f41f3e62c417ef569b65a01cc2e657ec9a94f.zip gdb-f59f41f3e62c417ef569b65a01cc2e657ec9a94f.tar.gz gdb-f59f41f3e62c417ef569b65a01cc2e657ec9a94f.tar.bz2 |
2009-12-03 Doug Kwan <dougkwan@google.com>
* arm.cc: Remove comment about missing .ARM.exidx section symbols.
(Target_arm::do_finalize_sections): Add parameter for symbol table
pointer. Add __exidx_start and __exidx_end symbols as appropriate.
* i386.cc (Target_i386::do_finalize_sections): Add an additional
parameter for symbol table pointer.
* layout.cc (Layout::finalize): Call Target::finalize_sections with
an additional parameter for a pointer to symbol table.
* powerpc.cc (Target_powerpc::do_finalize_sections): Add an additional
parameter for a symbol table pointer.
* sparc.cc (Target_sparc::do_finalize_sections): Ditto.
* target.h (Target::finalize_sections, Target::do_finalize_sections):
Ditto.
* x86_64.cc (Target_x86_64::do_finalize_sections): Add an additional
parameter for a symbol table pointer.
Diffstat (limited to 'gold/layout.cc')
-rw-r--r-- | gold/layout.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gold/layout.cc b/gold/layout.cc index b44dba6..a7f8185 100644 --- a/gold/layout.cc +++ b/gold/layout.cc @@ -1533,7 +1533,7 @@ off_t Layout::finalize(const Input_objects* input_objects, Symbol_table* symtab, Target* target, const Task* task) { - target->finalize_sections(this, input_objects); + target->finalize_sections(this, input_objects, symtab); this->count_local_symbols(task, input_objects); |