[compiler-rt] [LSAN][NFC] Add a new line to a log (PR #66305)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 13 17:13:33 PDT 2023
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-compiler-rt-sanitizer
<details>
<summary>Changes</summary>
None
--
Full diff: https://github.com/llvm/llvm-project/pull/66305.diff
1 Files Affected:
- (modified) compiler-rt/lib/lsan/lsan_common.cpp (+1-1)
<pre>
diff --git a/compiler-rt/lib/lsan/lsan_common.cpp b/compiler-rt/lib/lsan/lsan_common.cpp
index 9b73ddbdc756ffa..fcf765bd03ea7be 100644
--- a/compiler-rt/lib/lsan/lsan_common.cpp
+++ b/compiler-rt/lib/lsan/lsan_common.cpp
@@ -762,7 +762,7 @@ static bool CheckForLeaks() {
VReport(1, "LeakSanitizer is disabled");
return false;
}
- VReport(1, "LeakSanitizer: checking for leaks");
+ VReport(1, "LeakSanitizer: checking for leaks\n");
// Inside LockStuffAndStopTheWorld we can't run symbolizer, so we can't match
// suppressions. However if a stack id was previously suppressed, it should be
// suppressed in future checks as well.
</pre>
</details>
https://github.com/llvm/llvm-project/pull/66305
More information about the llvm-commits
mailing list