diff options
author | Etienne Bergeron <etienneb@google.com> | 2016-09-22 14:57:24 +0000 |
---|---|---|
committer | Etienne Bergeron <etienneb@google.com> | 2016-09-22 14:57:24 +0000 |
commit | 7f0e3153270d21d7931a18c2c0d4a2791103b52d (patch) | |
tree | 0e161fc6e75f23e71cf4fed2fea3c2d3df7b4eac /llvm/lib/Transforms/Instrumentation | |
parent | f6bfc1ad8b0a32183161e78b90f87416b31d49f5 (diff) | |
download | bcm5719-llvm-7f0e3153270d21d7931a18c2c0d4a2791103b52d.tar.gz bcm5719-llvm-7f0e3153270d21d7931a18c2c0d4a2791103b52d.zip |
[compiler-rt] fix typo in option description [NFC]
llvm-svn: 282163
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp index 992920ff1e5..f43245109d9 100644 --- a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp +++ b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp @@ -275,7 +275,7 @@ static cl::opt<std::string> ClDebugFunc("asan-debug-func", cl::Hidden, 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"); |