From 7f0e3153270d21d7931a18c2c0d4a2791103b52d Mon Sep 17 00:00:00 2001 From: Etienne Bergeron Date: Thu, 22 Sep 2016 14:57:24 +0000 Subject: [PATCH] [compiler-rt] fix typo in option description [NFC] llvm-svn: 282163 --- llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp index 992920f..f432451 100644 --- a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp +++ b/llvm/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"); -- 2.7.4