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]

[gold][aarch64] Silence info message for every erratum 843419 found and fixed


Hi Cary,

While migrating a large project to use gold instead of bfd, we are
seeing a large number (hundreds) of info messages about this erratum.
It turns out that bfd was also fixing this erratum but doesn't print
this message. This patch removes the message printing from gold.

2016-02-05 Rahul Chaudhry  <rahulchaudhry@google.com>

        * aarch64.cc (Target_aarch64::scan_erratum_843419_span): Remove
        info message for every erratum 843419 found and fixed.


Ok for trunk?

Thanks,
Rahul
--- gold/ChangeLog
+++ gold/ChangeLog
@@ -1,3 +1,8 @@
+2016-02-05 Rahul Chaudhry  <rahulchaudhry@google.com>
+
+	* aarch64.cc (Target_aarch64::scan_erratum_843419_span): Remove
+	info message for every erratum 843419 found and fixed.
+
 2016-02-05  Cary Coutant  <ccoutant@gmail.com>
 	    Andrew Senkevich  <andrew.senkevich@intel.com>
 
--- gold/aarch64.cc
+++ gold/aarch64.cc
@@ -8248,10 +8248,6 @@ Target_aarch64<size, big_endian>::scan_erratum_843419_span(
 	    }
 	  if (do_report)
 	    {
-	      gold_info(_("Erratum 843419 found and fixed at \"%s\", "
-			     "section %d, offset 0x%08x."),
-			   relobj->name().c_str(), shndx,
-			   (unsigned int)(span_start + offset));
 	      unsigned int erratum_insn_offset =
 		span_start + offset + insn_offset;
 	      Address erratum_address =

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