projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
622348e
)
Continue to keep 'SUMMARY: ' prefix in lsan. Whoops!
author
Nick Lewycky
<nicholas@mxc.ca>
Wed, 23 Oct 2013 07:58:11 +0000
(07:58 +0000)
committer
Nick 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
patch
|
blob
|
history
diff --git
a/compiler-rt/lib/lsan/lsan_common.cc
b/compiler-rt/lib/lsan/lsan_common.cc
index
d423e06
..
8a4ec7a
100644
(file)
--- 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());
}