diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/bugpoint/bugpoint.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/bugpoint/bugpoint.cpp b/tools/bugpoint/bugpoint.cpp index dda8c51..95350f4 100644 --- a/tools/bugpoint/bugpoint.cpp +++ b/tools/bugpoint/bugpoint.cpp @@ -20,8 +20,11 @@ InputFilenames(cl::Positional, cl::OneOrMore, static cl::list<const PassInfo*, bool, PassNameParser> PassList(cl::desc("Passes available:"), cl::ZeroOrMore); -//cl::list<std::string> -//InputArgv(cl::ConsumeAfter, cl::desc("<program arguments>...")); +// 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); |