[compiler-rt] bf8c7cd - Revert "[NFC][compiler-rt] Try to collect more info about crashes on bot"
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 9 14:33:40 PST 2024
Author: Vitaly Buka
Date: 2024-03-09T14:33:26-08:00
New Revision: bf8c7cda492f227d7e9a9fbc8e7a39adc7380a0e
URL: https://github.com/llvm/llvm-project/commit/bf8c7cda492f227d7e9a9fbc8e7a39adc7380a0e
DIFF: https://github.com/llvm/llvm-project/commit/bf8c7cda492f227d7e9a9fbc8e7a39adc7380a0e.diff
LOG: Revert "[NFC][compiler-rt] Try to collect more info about crashes on bot"
Catches nothing, reported #84654.
This reverts commit 6f7ebcb71f4e89309c613da9600991850f15f74f.
Added:
Modified:
compiler-rt/lib/lsan/lsan_common.cpp
Removed:
################################################################################
diff --git a/compiler-rt/lib/lsan/lsan_common.cpp b/compiler-rt/lib/lsan/lsan_common.cpp
index 568bd65ba46741..0ecded8b28cdb0 100644
--- a/compiler-rt/lib/lsan/lsan_common.cpp
+++ b/compiler-rt/lib/lsan/lsan_common.cpp
@@ -568,7 +568,6 @@ static void ProcessRootRegions(Frontier *frontier) {
MemoryMappingLayout proc_maps(/*cache_enabled*/ true);
MemoryMappedSegment segment;
InternalMmapVector<Region> mapped_regions;
- CHECK_EQ(mapped_regions.size(), 0ull);
while (proc_maps.Next(&segment))
if (segment.IsReadable())
mapped_regions.push_back({segment.start, segment.end});
More information about the llvm-commits
mailing list