[llvm] r249331 - [msan] Correct a typo in poison stack pattern command line description.

Evgeniy Stepanov via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 5 11:01:18 PDT 2015


Author: eugenis
Date: Mon Oct  5 13:01:17 2015
New Revision: 249331

URL: http://llvm.org/viewvc/llvm-project?rev=249331&view=rev
Log:
[msan] Correct a typo in poison stack pattern command line description.

Patch by Jon Eyolfson.

Modified:
    llvm/trunk/lib/Transforms/Instrumentation/MemorySanitizer.cpp

Modified: llvm/trunk/lib/Transforms/Instrumentation/MemorySanitizer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Instrumentation/MemorySanitizer.cpp?rev=249331&r1=249330&r2=249331&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Instrumentation/MemorySanitizer.cpp (original)
+++ llvm/trunk/lib/Transforms/Instrumentation/MemorySanitizer.cpp Mon Oct  5 13:01:17 2015
@@ -158,7 +158,7 @@ static cl::opt<bool> ClPoisonStackWithCa
        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"),




More information about the llvm-commits mailing list