aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/llvm-dwp/llvm-dwp.cpp
diff options
context:
space:
mode:
authorFangrui Song <i@maskray.me>2022-06-04 23:51:12 -0700
committerFangrui Song <i@maskray.me>2022-06-04 23:51:13 -0700
commitd0d1c416cb1eb60c8a9cff8d487c8fea92fe21f2 (patch)
treef404c40df4d76c8a5b23fc1a391bd29e5d793449 /llvm/tools/llvm-dwp/llvm-dwp.cpp
parente0039b8d6a5bd05e70203962f448569f2d2ef1c2 (diff)
downloadllvm-d0d1c416cb1eb60c8a9cff8d487c8fea92fe21f2.zip
llvm-d0d1c416cb1eb60c8a9cff8d487c8fea92fe21f2.tar.gz
llvm-d0d1c416cb1eb60c8a9cff8d487c8fea92fe21f2.tar.bz2
Remove unneeded cl::ZeroOrMore for cl::list options
Diffstat (limited to 'llvm/tools/llvm-dwp/llvm-dwp.cpp')
-rw-r--r--llvm/tools/llvm-dwp/llvm-dwp.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/tools/llvm-dwp/llvm-dwp.cpp b/llvm/tools/llvm-dwp/llvm-dwp.cpp
index 9aa6949..c48236e 100644
--- a/llvm/tools/llvm-dwp/llvm-dwp.cpp
+++ b/llvm/tools/llvm-dwp/llvm-dwp.cpp
@@ -36,9 +36,8 @@ using namespace llvm::object;
static mc::RegisterMCTargetOptionsFlags MCTargetOptionsFlags;
cl::OptionCategory DwpCategory("Specific Options");
-static cl::list<std::string> InputFiles(cl::Positional, cl::ZeroOrMore,
- cl::desc("<input files>"),
- cl::cat(DwpCategory));
+static cl::list<std::string>
+ InputFiles(cl::Positional, cl::desc("<input files>"), cl::cat(DwpCategory));
static cl::list<std::string> ExecFilenames(
"e", cl::ZeroOrMore,