From: Etienne Bergeron Date: Thu, 22 Sep 2016 14:57:24 +0000 (+0000) Subject: [compiler-rt] fix typo in option description [NFC] X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3abbc4d85486ad516b8c7dc73684e821f9d21cc3;p=llvm [compiler-rt] fix typo in option description [NFC] git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@282163 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/lib/Transforms/Instrumentation/AddressSanitizer.cpp index 992920ff1e5..f43245109d9 100644 --- a/lib/Transforms/Instrumentation/AddressSanitizer.cpp +++ b/lib/Transforms/Instrumentation/AddressSanitizer.cpp @@ -275,7 +275,7 @@ static cl::opt ClDebugFunc("asan-debug-func", cl::Hidden, cl::desc("Debug func")); static cl::opt ClDebugMin("asan-debug-min", cl::desc("Debug min inst"), cl::Hidden, cl::init(-1)); -static cl::opt ClDebugMax("asan-debug-max", cl::desc("Debug man inst"), +static cl::opt ClDebugMax("asan-debug-max", cl::desc("Debug max inst"), cl::Hidden, cl::init(-1)); STATISTIC(NumInstrumentedReads, "Number of instrumented reads");