diff options
Diffstat (limited to 'gold/x86_64.cc')
-rw-r--r-- | gold/x86_64.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gold/x86_64.cc b/gold/x86_64.cc index 5526f6f..2972180 100644 --- a/gold/x86_64.cc +++ b/gold/x86_64.cc @@ -102,7 +102,7 @@ class Target_x86_64 : public Target_freebsd<64, false> // 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. @@ -1642,7 +1642,10 @@ Target_x86_64::scan_relocs(Symbol_table* symtab, // Finalize the sections. void -Target_x86_64::do_finalize_sections(Layout* layout, const Input_objects*) +Target_x86_64::do_finalize_sections( + Layout* layout, + const Input_objects*, + Symbol_table*) { // Fill in some more dynamic tags. Output_data_dynamic* const odyn = layout->dynamic_data(); |