From f59f41f3e62c417ef569b65a01cc2e657ec9a94f Mon Sep 17 00:00:00 2001 From: Doug Kwan Date: Thu, 3 Dec 2009 23:13:55 +0000 Subject: 2009-12-03 Doug Kwan * 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. --- gold/sparc.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gold/sparc.cc') diff --git a/gold/sparc.cc b/gold/sparc.cc index d344af2..acf5ba6 100644 --- a/gold/sparc.cc +++ b/gold/sparc.cc @@ -94,7 +94,7 @@ class Target_sparc : public Sized_target const unsigned char* plocal_symbols); // Finalize the sections. void - do_finalize_sections(Layout*, const Input_objects*); + do_finalize_sections(Layout*, const Input_objects*, Symbol_table*); // Return the value to use for a dynamic which requires special // treatment. @@ -2319,7 +2319,8 @@ template void Target_sparc::do_finalize_sections( Layout* layout, - const Input_objects*) + const Input_objects*, + Symbol_table*) { // Fill in some more dynamic tags. Output_data_dynamic* const odyn = layout->dynamic_data(); -- cgit v1.1