Continue to keep 'SUMMARY: ' prefix in lsan. Whoops!
authorNick Lewycky <nicholas@mxc.ca>
Wed, 23 Oct 2013 07:58:11 +0000 (07:58 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Wed, 23 Oct 2013 07:58:11 +0000 (07:58 +0000)
llvm-svn: 193232

compiler-rt/lib/lsan/lsan_common.cc

index d423e06..8a4ec7a 100644 (file)
@@ -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());
 }