diff options
| author | Dan Gohman <gohman@apple.com> | 2010-06-01 16:31:34 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2010-06-01 16:31:34 +0000 |
| commit | 017a3537d6ba6d016bef89a90b22da716489d769 (patch) | |
| tree | ee4de67b3146530a062aed953ac55bf9846ea33b /include/llvm/MC | |
| parent | 91684471c87c2eb08ac416c4531c650a283b2b53 (diff) | |
| download | external_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.h | 2 |
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; }; |
