diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2015-10-05 18:01:17 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2015-10-05 18:01:17 +0000 |
commit | 670abcfd78d51960deda9e4d4174d5ae6458dc44 (patch) | |
tree | 9ebc7c491efd8261dc0ca7c733b65320cb7f840e /llvm/lib/Transforms | |
parent | d585cd85a3b4e5d5a76056c3b8358dfd1460fa07 (diff) | |
download | bcm5719-llvm-670abcfd78d51960deda9e4d4174d5ae6458dc44.tar.gz bcm5719-llvm-670abcfd78d51960deda9e4d4174d5ae6458dc44.zip |
[msan] Correct a typo in poison stack pattern command line description.
Patch by Jon Eyolfson.
llvm-svn: 249331
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp b/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp index 3c0c768c23a..dad3873fc18 100644 --- a/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp +++ b/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp @@ -158,7 +158,7 @@ static cl::opt<bool> ClPoisonStackWithCall("msan-poison-stack-with-call", cl::desc("poison uninitialized stack variables with a call"), cl::Hidden, cl::init(false)); static cl::opt<int> 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<bool> ClPoisonUndef("msan-poison-undef", cl::desc("poison undef temps"), |