mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
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. llvm-svn: 13389
This commit is contained in:
parent
88706ea172
commit
d055a56886
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
Loading…
x
Reference in New Issue
Block a user