aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/MC
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-06-01 16:31:34 +0000
committerDan Gohman <gohman@apple.com>2010-06-01 16:31:34 +0000
commit017a3537d6ba6d016bef89a90b22da716489d769 (patch)
treeee4de67b3146530a062aed953ac55bf9846ea33b /include/llvm/MC
parent91684471c87c2eb08ac416c4531c650a283b2b53 (diff)
downloadexternal_llvm-017a3537d6ba6d016bef89a90b22da716489d769.zip
external_llvm-017a3537d6ba6d016bef89a90b22da716489d769.tar.gz
external_llvm-017a3537d6ba6d016bef89a90b22da716489d769.tar.bz2
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
Diffstat (limited to 'include/llvm/MC')
-rw-r--r--include/llvm/MC/MCStreamer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/MC/MCStreamer.h b/include/llvm/MC/MCStreamer.h
index 6b163e2..8c92fc7 100644
--- a/include/llvm/MC/MCStreamer.h
+++ b/include/llvm/MC/MCStreamer.h
@@ -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;
};