[compiler-rt] c68926d - [HWASAN][Fuchsia] Fixed Fuchsia build.

Kirill Stoimenov via llvm-commits llvm-commits at lists.llvm.org
Sat Jan 14 10:26:50 PST 2023


Author: Kirill Stoimenov
Date: 2023-01-14T18:25:21Z
New Revision: c68926d7e68aa56b452ae806709fb16b7c204e68

URL: https://github.com/llvm/llvm-project/commit/c68926d7e68aa56b452ae806709fb16b7c204e68
DIFF: https://github.com/llvm/llvm-project/commit/c68926d7e68aa56b452ae806709fb16b7c204e68.diff

LOG: [HWASAN][Fuchsia] Fixed Fuchsia build.

Reviewed By: kstoimenov

Differential Revision: https://reviews.llvm.org/D141771

Added: 
    

Modified: 
    compiler-rt/lib/lsan/lsan_common.h

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/lsan/lsan_common.h b/compiler-rt/lib/lsan/lsan_common.h
index a9942464aaf14..0d5c00310842a 100644
--- a/compiler-rt/lib/lsan/lsan_common.h
+++ b/compiler-rt/lib/lsan/lsan_common.h
@@ -265,7 +265,8 @@ void ScanRangeForPointers(uptr begin, uptr end,
                           Frontier *frontier,
                           const char *region_type, ChunkTag tag);
 void ScanGlobalRange(uptr begin, uptr end, Frontier *frontier);
-void ScanExtraStackRanges(tid_t os_id, Frontier *frontier);
+void ScanExtraStackRanges(const InternalMmapVector<Range> &ranges,
+                          Frontier *frontier);
 
 // Functions called from the parent tool.
 const char *MaybeCallLsanDefaultOptions();


        


More information about the llvm-commits mailing list