Use the new commandline flag to allow us to call bugpoint like this:

bugpoint ... --tool-args -enable-correct-eh-support -regalloc=linearscan --args -- -foo

So that tool-args option gets the -enable-correct-eh-support -regalloc=linearscan flags instead of bugpoint.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13389 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2004-05-06 22:05:35 +00:00
parent bf455c2360
commit 60083e2fc0

View File

@@ -61,11 +61,11 @@ namespace llvm {
// program being debugged. // program being debugged.
cl::list<std::string> cl::list<std::string>
InputArgv("args", cl::Positional, cl::desc("<program arguments>..."), InputArgv("args", cl::Positional, cl::desc("<program arguments>..."),
cl::ZeroOrMore); cl::ZeroOrMore, cl::PositionalEatsArgs);
cl::list<std::string> cl::list<std::string>
ToolArgv("tool-args", cl::Positional, cl::desc("<tool arguments>..."), ToolArgv("tool-args", cl::Positional, cl::desc("<tool arguments>..."),
cl::ZeroOrMore); cl::ZeroOrMore, cl::PositionalEatsArgs);
} }
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//