summaryrefslogtreecommitdiff
path: root/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/LLJITWithRemoteDebugging.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/examples/OrcV2Examples/LLJITWithRemoteDebugging/LLJITWithRemoteDebugging.cpp
parente0039b8d6a5bd05e70203962f448569f2d2ef1c2 (diff)
Remove unneeded cl::ZeroOrMore for cl::list options
Diffstat (limited to 'llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/LLJITWithRemoteDebugging.cpp')
-rw-r--r--llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/LLJITWithRemoteDebugging.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/LLJITWithRemoteDebugging.cpp b/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/LLJITWithRemoteDebugging.cpp
index 3c1f5f86dcba..795c167c5271 100644
--- a/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/LLJITWithRemoteDebugging.cpp
+++ b/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/LLJITWithRemoteDebugging.cpp
@@ -110,7 +110,7 @@ static cl::list<std::string> InputArgv("args", cl::Positional,
// Given paths must exist on the remote target.
static cl::list<std::string>
Dylibs("dlopen", cl::desc("Dynamic libraries to load before linking"),
- cl::value_desc("filename"), cl::ZeroOrMore);
+ cl::value_desc("filename"));
// File path of the executable to launch for execution in a child process.
// Inter-process communication will go through stdin/stdout pipes.