Remove an unnecessary flush in the CppBackend's output.

llvm-svn: 78138
This commit is contained in:
Dan Gohman 2009-08-05 01:06:38 +00:00
parent c6b5e8a5c5
commit cbf1e16ad9
1 changed files with 0 additions and 1 deletions

View File

@ -1816,7 +1816,6 @@ namespace {
Out << "int main(int argc, char**argv) {\n";
Out << " Module* Mod = " << fname << "();\n";
Out << " verifyModule(*Mod, PrintMessageAction);\n";
Out << " outs().flush();\n";
Out << " PassManager PM;\n";
Out << " PM.add(createPrintModulePass(&outs()));\n";
Out << " PM.run(*Mod);\n";