diff options
author | Vladimir Radosavljevic <vladimir.radosavljevic@imgtec.com> | 2016-03-17 14:27:48 -0700 |
---|---|---|
committer | Cary Coutant <ccoutant@gmail.com> | 2016-03-17 14:27:48 -0700 |
commit | 1a08ae216cc8e8f8692114b92d68a14aa739eb2a (patch) | |
tree | 9bfd5c8cda8aecba00795eea03321d65e6b43369 /gold/mips.cc | |
parent | c2fa9cedff58bfdb38cfb627b58fb34256f20369 (diff) | |
download | gdb-1a08ae216cc8e8f8692114b92d68a14aa739eb2a.zip gdb-1a08ae216cc8e8f8692114b92d68a14aa739eb2a.tar.gz gdb-1a08ae216cc8e8f8692114b92d68a14aa739eb2a.tar.bz2 |
Add missing Mips_output_data_la25_stub::do_print_to_mapfile.
gold/
* mips.cc (class Mips_output_data_la25_stub): Add
do_print_to_mapfile function.
Diffstat (limited to 'gold/mips.cc')
-rw-r--r-- | gold/mips.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gold/mips.cc b/gold/mips.cc index 895fd4c..bc4e5e95 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*); |