[compiler-rt] r193232 - Continue to keep 'SUMMARY: ' prefix in lsan. Whoops!

Nick Lewycky nicholas at mxc.ca
Wed Oct 23 00:58:12 PDT 2013


Author: nicholas
Date: Wed Oct 23 02:58:11 2013
New Revision: 193232

URL: http://llvm.org/viewvc/llvm-project?rev=193232&view=rev
Log:
Continue to keep 'SUMMARY: ' prefix in lsan. Whoops!

Modified:
    compiler-rt/trunk/lib/lsan/lsan_common.cc

Modified: compiler-rt/trunk/lib/lsan/lsan_common.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/lsan/lsan_common.cc?rev=193232&r1=193231&r2=193232&view=diff
==============================================================================
--- compiler-rt/trunk/lib/lsan/lsan_common.cc (original)
+++ compiler-rt/trunk/lib/lsan/lsan_common.cc Wed Oct 23 02:58:11 2013
@@ -513,7 +513,8 @@ void LeakReport::PrintSummary() {
   const int kMaxSummaryLength = 128;
   InternalScopedBuffer<char> summary(kMaxSummaryLength);
   internal_snprintf(summary.data(), kMaxSummaryLength,
-                    "LeakSanitizer: %zu byte(s) leaked in %zu allocation(s).",
+                    "SUMMARY: LeakSanitizer: %zu byte(s) leaked in %zu "
+                    "allocation(s).",
                     bytes, allocations);
   __sanitizer_report_error_summary(summary.data());
 }





More information about the llvm-commits mailing list