summaryrefslogtreecommitdiff
path: root/tools/bugpoint/bugpoint.cpp
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2003-07-30 17:59:23 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2003-07-30 17:59:23 +0000
commit800e6e216abaf93e7cc297af0e1e78f24b2d6143 (patch)
treec20c10b41fb56cccfbf75851e83ac8312bb68388 /tools/bugpoint/bugpoint.cpp
parent7835c852270da3da66d79d4d18cefda3c8e3019c (diff)
downloadllvm-800e6e216abaf93e7cc297af0e1e78f24b2d6143.tar.gz
llvm-800e6e216abaf93e7cc297af0e1e78f24b2d6143.tar.bz2
llvm-800e6e216abaf93e7cc297af0e1e78f24b2d6143.tar.xz
Moved definition of InputArgv into ExecutionDriver.cpp -- it is only used there.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7427 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/bugpoint.cpp')
-rw-r--r--tools/bugpoint/bugpoint.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/tools/bugpoint/bugpoint.cpp b/tools/bugpoint/bugpoint.cpp
index 95350f4ffe..ea44088947 100644
--- a/tools/bugpoint/bugpoint.cpp
+++ b/tools/bugpoint/bugpoint.cpp
@@ -20,12 +20,6 @@ InputFilenames(cl::Positional, cl::OneOrMore,
static cl::list<const PassInfo*, bool, PassNameParser>
PassList(cl::desc("Passes available:"), cl::ZeroOrMore);
-// Anything specified after the --args option are taken as arguments to the
-// program being debugged.
-cl::list<std::string>
-InputArgv("args", cl::Positional, cl::desc("<program arguments>..."),
- cl::ZeroOrMore);
-
int main(int argc, char **argv) {
cl::ParseCommandLineOptions(argc, argv);