forked from OSchip/llvm-project
Add a new -no-output option, useful for -aa-eval tests.
llvm-svn: 5541
This commit is contained in:
parent
ca959ff6fd
commit
4dbe59b5ba
|
@ -47,6 +47,9 @@ Force("f", cl::desc("Overwrite output files"));
|
|||
static cl::opt<bool>
|
||||
PrintEachXForm("p", cl::desc("Print module after each transformation"));
|
||||
|
||||
static cl::opt<bool>
|
||||
NoOutput("no-output", cl::desc("Do not write result bytecode file"), cl::Hidden);
|
||||
|
||||
static cl::opt<bool>
|
||||
Quiet("q", cl::desc("Don't print 'program modified' message"));
|
||||
|
||||
|
@ -128,7 +131,8 @@ int main(int argc, char **argv) {
|
|||
Passes.add(createVerifierPass());
|
||||
|
||||
// Write bytecode out to disk or cout as the last step...
|
||||
Passes.add(new WriteBytecodePass(Out, Out != &std::cout));
|
||||
if (!NoOutput)
|
||||
Passes.add(new WriteBytecodePass(Out, Out != &std::cout));
|
||||
|
||||
// Now that we have all of the passes ready, run them.
|
||||
if (Passes.run(*M.get()) && !Quiet)
|
||||
|
|
Loading…
Reference in New Issue