[llvm] [msan] Add 32-bit platforms support (PR #109284)
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 23 18:32:55 PDT 2024
================
@@ -4487,6 +4488,8 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
if (EagerCheck) {
insertShadowCheck(A, &CB);
Size = DL.getTypeAllocSize(A->getType());
+ if (ArgOffset + Size > kParamTLSSize)
----------------
vitalybuka wrote:
This requires a separate patch with a test
https://github.com/llvm/llvm-project/pull/109284
More information about the llvm-commits
mailing list