aboutsummaryrefslogtreecommitdiff
path: root/libc/benchmarks
diff options
context:
space:
mode:
authorFangrui Song <i@maskray.me>2022-06-05 00:31:44 -0700
committerFangrui Song <i@maskray.me>2022-06-05 00:31:44 -0700
commitd86a206f06a51c12a9fcf2c20199f4e819751c0c (patch)
tree863e591c1cf2032925cdc13e79d9c3f424a636a0 /libc/benchmarks
parent2c4d52467a25aed5ec9ed868fe8b74a1a67d1535 (diff)
downloadllvm-d86a206f06a51c12a9fcf2c20199f4e819751c0c.zip
llvm-d86a206f06a51c12a9fcf2c20199f4e819751c0c.tar.gz
llvm-d86a206f06a51c12a9fcf2c20199f4e819751c0c.tar.bz2
Remove unneeded cl::ZeroOrMore for cl::opt/cl::list options
Diffstat (limited to 'libc/benchmarks')
-rw-r--r--libc/benchmarks/automemcpy/lib/ResultAnalyzerMain.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/benchmarks/automemcpy/lib/ResultAnalyzerMain.cpp b/libc/benchmarks/automemcpy/lib/ResultAnalyzerMain.cpp
index f3fb825..00eef73 100644
--- a/libc/benchmarks/automemcpy/lib/ResultAnalyzerMain.cpp
+++ b/libc/benchmarks/automemcpy/lib/ResultAnalyzerMain.cpp
@@ -22,7 +22,7 @@ static cl::list<std::string> InputFilenames(cl::Positional, cl::OneOrMore,
// User can filter the distributions to be taken into account.
static cl::list<std::string>
- KeepOnlyDistributions("keep-only-distributions", cl::ZeroOrMore,
+ KeepOnlyDistributions("keep-only-distributions",
cl::desc("<comma separated list of distribution "
"names, keeps all if unspecified>"));