Add X86 instruction printer support for printing MCValue operands.
[oota-llvm.git] / lib / VMCore / PrintModulePass.cpp
index 7cb009a7d3c52c54ffcf57f55d356563c86f012d..0a7f4497a8e6a9706ba9dafda6555e075b69d5a8 100644 (file)
@@ -38,7 +38,6 @@ namespace {
     
     bool runOnModule(Module &M) {
       (*Out) << M;
-      Out->flush();
       return false;
     }
     
@@ -67,7 +66,6 @@ namespace {
     //
     bool runOnFunction(Function &F) {
       (*Out) << Banner << static_cast<Value&>(F);
-      Out->flush();
       return false;
     }