Don't call flush() at a library level which isn't checking for errors

and doesn't know where the output is going.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105274 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman
2010-06-01 16:31:34 +00:00
parent 943005e094
commit 4b1000d117
3 changed files with 1 additions and 3 deletions

View File

@@ -314,7 +314,7 @@ namespace llvm {
virtual void EmitRawText(StringRef String);
void EmitRawText(const Twine &String);
/// Finish - Finish emission of machine code and flush any output.
/// Finish - Finish emission of machine code.
virtual void Finish() = 0;
};