Skip to content

Commit 82c463c

Browse files
committed
Turn fix off by default
1 parent 4d4a805 commit 82c463c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ static cl::opt<bool> ClPoisonUndefVectors(
280280
"considered fully initialized, which may lead to false "
281281
"negatives. Fully undefined constant vectors are "
282282
"unaffected by this flag (see -msan-poison-undef)."),
283-
cl::Hidden, cl::init(true));
283+
cl::Hidden, cl::init(false));
284284

285285
static cl::opt<bool>
286286
ClHandleICmp("msan-handle-icmp",

llvm/test/Instrumentation/MemorySanitizer/partial-poison.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
2-
; RUN: opt < %s -S -passes='msan' 2>&1 | FileCheck %s --check-prefixes=CHECK,CHECK-PRECISE
2+
; RUN: opt < %s -S -passes='msan' -msan-poison-undef-vectors=true 2>&1 | FileCheck %s --check-prefixes=CHECK,CHECK-PRECISE
33
; RUN: opt < %s -S -passes='msan' -msan-poison-undef-vectors=false 2>&1 | FileCheck %s --check-prefixes=CHECK,CHECK-IMPRECISE
44
;
55
; Regression test case for computing shadows of partially poisoned vectors.

0 commit comments

Comments
 (0)