[llvm] r282163 - [compiler-rt] fix typo in option description [NFC]

Etienne Bergeron via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 22 07:57:24 PDT 2016


Author: etienneb
Date: Thu Sep 22 09:57:24 2016
New Revision: 282163

URL: http://llvm.org/viewvc/llvm-project?rev=282163&view=rev
Log:
[compiler-rt] fix typo in option description [NFC]

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

Modified: llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp?rev=282163&r1=282162&r2=282163&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp (original)
+++ llvm/trunk/lib/Transforms/Instrumentation/AddressSanitizer.cpp Thu Sep 22 09:57:24 2016
@@ -275,7 +275,7 @@ static cl::opt<std::string> ClDebugFunc(
                                         cl::desc("Debug func"));
 static cl::opt<int> ClDebugMin("asan-debug-min", cl::desc("Debug min inst"),
                                cl::Hidden, cl::init(-1));
-static cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug man inst"),
+static cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug max inst"),
                                cl::Hidden, cl::init(-1));
 
 STATISTIC(NumInstrumentedReads, "Number of instrumented reads");




More information about the llvm-commits mailing list