diff options
author | Craig Topper <craig.topper@intel.com> | 2018-04-01 22:16:52 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2018-04-01 22:16:52 +0000 |
commit | 8a1787ae224de305c3227c45adbd3cc5e329249b (patch) | |
tree | 540b3cd7d654ef4b8d50294faa0f6e855699a91e /llvm/lib/Support/DebugCounter.cpp | |
parent | f5730c38e972f90f7eaef67d526885f137ace6ca (diff) | |
download | bcm5719-llvm-8a1787ae224de305c3227c45adbd3cc5e329249b.tar.gz bcm5719-llvm-8a1787ae224de305c3227c45adbd3cc5e329249b.zip |
[DebugCounter] Make -debug-counter cl::Hidden.
llvm-svn: 328948
Diffstat (limited to 'llvm/lib/Support/DebugCounter.cpp')
-rw-r--r-- | llvm/lib/Support/DebugCounter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/DebugCounter.cpp b/llvm/lib/Support/DebugCounter.cpp index 1d46de04ee6..4a439746541 100644 --- a/llvm/lib/Support/DebugCounter.cpp +++ b/llvm/lib/Support/DebugCounter.cpp @@ -45,7 +45,7 @@ private: // Create our command line option. static DebugCounterList DebugCounterOption( - "debug-counter", + "debug-counter", cl::Hidden, cl::desc("Comma separated list of debug counter skip and count"), cl::CommaSeparated, cl::ZeroOrMore, cl::location(DebugCounter::instance())); |