diff options
| author | Nick Lewycky <nicholas@mxc.ca> | 2013-10-23 07:58:11 +0000 |
|---|---|---|
| committer | Nick Lewycky <nicholas@mxc.ca> | 2013-10-23 07:58:11 +0000 |
| commit | 993f1f38fdda2a38e7b3aac0611162796ce92ad1 (patch) | |
| tree | 49e5b5569b099a88a718e7fe91a2fe3e76157272 | |
| parent | 622348e69379a0738e959a903a68736acd2ce190 (diff) | |
| download | bcm5719-llvm-993f1f38fdda2a38e7b3aac0611162796ce92ad1.tar.gz bcm5719-llvm-993f1f38fdda2a38e7b3aac0611162796ce92ad1.zip | |
Continue to keep 'SUMMARY: ' prefix in lsan. Whoops!
llvm-svn: 193232
| -rw-r--r-- | compiler-rt/lib/lsan/lsan_common.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler-rt/lib/lsan/lsan_common.cc b/compiler-rt/lib/lsan/lsan_common.cc index d423e067e69..8a4ec7a3150 100644 --- a/compiler-rt/lib/lsan/lsan_common.cc +++ b/compiler-rt/lib/lsan/lsan_common.cc @@ -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()); } |

