From 3f77b126399316d8bda0fa5af29b450c3587193c Mon Sep 17 00:00:00 2001 From: Evgeniy Stepanov Date: Mon, 5 Oct 2015 18:01:17 +0000 Subject: [PATCH] [msan] Correct a typo in poison stack pattern command line description. Patch by Jon Eyolfson. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@249331 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Instrumentation/MemorySanitizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transforms/Instrumentation/MemorySanitizer.cpp b/lib/Transforms/Instrumentation/MemorySanitizer.cpp index 3c0c768c23a..dad3873fc18 100644 --- a/lib/Transforms/Instrumentation/MemorySanitizer.cpp +++ b/lib/Transforms/Instrumentation/MemorySanitizer.cpp @@ -158,7 +158,7 @@ static cl::opt ClPoisonStackWithCall("msan-poison-stack-with-call", cl::desc("poison uninitialized stack variables with a call"), cl::Hidden, cl::init(false)); static cl::opt ClPoisonStackPattern("msan-poison-stack-pattern", - cl::desc("poison uninitialized stack variables with the given patter"), + cl::desc("poison uninitialized stack variables with the given pattern"), cl::Hidden, cl::init(0xff)); static cl::opt ClPoisonUndef("msan-poison-undef", cl::desc("poison undef temps"), -- 2.34.1