This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] gold: Add do_print_to_mapfile function in Mips_output_data_la25_stub class.


This patch adds missing implementation of do_print_to_mapfile function in Mips_output_data_la25_stub class.

Regards,
Vladimir.

ChangeLog -

    * mips.cc (class Mips_output_data_la25_stub): Add
    do_print_to_mapfile function.
diff --git a/gold/mips.cc b/gold/mips.cc
index 6f66fe9..e8652f8 100644
--- a/gold/mips.cc
+++ b/gold/mips.cc
@@ -2246,6 +2246,11 @@ class Mips_output_data_la25_stub : public Output_section_data
   create_stub_symbol(Mips_symbol<size>* sym, Symbol_table* symtab,
                      Target_mips<size, big_endian>* target, uint64_t symsize);
 
+  // Write to a map file.
+  void
+  do_print_to_mapfile(Mapfile* mapfile) const
+  { mapfile->print_output_data(this, _(".LA25.stubs")); }
+
   // Write out the LA25 stub section.
   void
   do_write(Output_file*);

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]