From 5ec2ff57e97a65a9c9d9b57c8ef1ee6190d6bb0c Mon Sep 17 00:00:00 2001 From: Evgeniy Stepanov Date: Mon, 28 Jan 2013 09:15:15 +0000 Subject: [msan] Make msan-handle-icmp-exact=0 by default. 50% slowdown on one of the specs. llvm-svn: 173678 --- llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib') diff --git a/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp b/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp index a329dcc6bee..e92892d2887 100644 --- a/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp +++ b/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp @@ -129,7 +129,7 @@ static cl::opt ClHandleICmp("msan-handle-icmp", static cl::opt ClHandleICmpExact("msan-handle-icmp-exact", cl::desc("exact handling of relational integer ICmp"), - cl::Hidden, cl::init(true)); + cl::Hidden, cl::init(false)); static cl::opt ClStoreCleanOrigin("msan-store-clean-origin", cl::desc("store origin for clean (fully initialized) values"), -- cgit v1.2.3