From: Cary Coutant Date: Mon, 2 Mar 2015 18:10:52 +0000 (-0800) Subject: Fix an internal error in do_print_to_mapfile on Arm. X-Git-Tag: gdb-7.10-release~1411 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5b07cd848db1dbe9e3498e94bea5e69c8e438153;p=external%2Fbinutils.git Fix an internal error in do_print_to_mapfile on Arm. 2015-02-02 Khem Raj gold/ * attributes.h (class Output_attributes_section_data ): Add do_print_to_mapfile function. --- diff --git a/gold/ChangeLog b/gold/ChangeLog index 31d123e..10fc03b 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,8 @@ +2015-02-02 Khem Raj + + * attributes.h (class Output_attributes_section_data ): Add + do_print_to_mapfile function. + 2015-02-24 Alan Modra PR 18010 diff --git a/gold/attributes.h b/gold/attributes.h index c0b171f..efb1b5c 100644 --- a/gold/attributes.h +++ b/gold/attributes.h @@ -387,6 +387,11 @@ class Output_attributes_section_data : public Output_section_data { } protected: + // Write to a map file. + void + do_print_to_mapfile(Mapfile* mapfile) const + { mapfile->print_output_data(this, _("** attributes")); } + // Write the data to the output file. void do_write(Output_file*);