Use "gold_info" instead of "gold_warning" for erratum fix.

gold/ChangeLog:

	* aarch64.cc (Target_aarch64::scan_erratum_843419_span): Use 'gold_info'.
	(Target_aarch64::scan_erratum_835769_span): USe 'gold_info'.
This commit is contained in:
Han Shen 2015-07-09 15:55:55 -07:00
parent f250f5c6dd
commit 73854cdd43
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,11 @@
2015-07-09 Han Shen <shenhan@google.com>
Use "gold_info" instead of "gold_warning" for erratum fix.
* aarch64.cc (Target_aarch64::scan_erratum_843419_span): Use
'gold_info'.
(Target_aarch64::scan_erratum_835769_span): USe 'gold_info'.
2015-07-09 Han Shen <shenhan@google.com>
Drop missing symbol warning for arm/aarch64.

View File

@ -7931,7 +7931,7 @@ Target_aarch64<size, big_endian>::scan_erratum_835769_span(
// "span_start + offset + BPI".
section_size_type erratum_insn_offset = span_start + offset + BPI;
Address erratum_address = output_address + offset + BPI;
gold_warning(_("Erratum 835769 found and fixed at \"%s\", "
gold_info(_("Erratum 835769 found and fixed at \"%s\", "
"section %d, offset 0x%08x."),
relobj->name().c_str(), shndx,
(unsigned int)(span_start + offset));
@ -8017,7 +8017,7 @@ Target_aarch64<size, big_endian>::scan_erratum_843419_span(
}
if (do_report)
{
gold_warning(_("Erratum 843419 found and fixed at \"%s\", "
gold_info(_("Erratum 843419 found and fixed at \"%s\", "
"section %d, offset 0x%08x."),
relobj->name().c_str(), shndx,
(unsigned int)(span_start + offset));