diff options
Diffstat (limited to 'contrib/llvm-project/llvm/lib/Support/DebugCounter.cpp')
-rw-r--r-- | contrib/llvm-project/llvm/lib/Support/DebugCounter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/llvm-project/llvm/lib/Support/DebugCounter.cpp b/contrib/llvm-project/llvm/lib/Support/DebugCounter.cpp index f553463be8df..bc2df37e773d 100644 --- a/contrib/llvm-project/llvm/lib/Support/DebugCounter.cpp +++ b/contrib/llvm-project/llvm/lib/Support/DebugCounter.cpp @@ -49,8 +49,7 @@ struct CreateDebugCounterOption { return new DebugCounterList( "debug-counter", cl::Hidden, cl::desc("Comma separated list of debug counter skip and count"), - cl::CommaSeparated, cl::ZeroOrMore, - cl::location(DebugCounter::instance())); + cl::CommaSeparated, cl::location(DebugCounter::instance())); } }; } // namespace |