aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-11-07 19:49:17 +0000
committerDan Gohman <gohman@apple.com>2008-11-07 19:49:17 +0000
commite5f4de42b5d26f60cec6fab0482eaf579246b218 (patch)
treea0ca46346f74d34686ec6d1223b0a86b992726da /lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp
parentbc3c4296c03c6b9aee3cce68ae33279f5ad5ca2b (diff)
downloadexternal_llvm-e5f4de42b5d26f60cec6fab0482eaf579246b218.zip
external_llvm-e5f4de42b5d26f60cec6fab0482eaf579246b218.tar.gz
external_llvm-e5f4de42b5d26f60cec6fab0482eaf579246b218.tar.bz2
Flush the raw_ostream after emitting the assembly for a function.
This is a temporary fix for the -print-emitted-asm option, where errs() is used as the stream, in the case where other code is using stderr without using errs()' buffer. Hopefully soon we'll fix errs() to be non-buffered instead. Patch by Preston Gurd. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58859 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp')
-rw-r--r--lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp b/lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp
index 5710add..556757a 100644
--- a/lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp
+++ b/lib/Target/X86/AsmPrinter/X86ATTAsmPrinter.cpp
@@ -265,6 +265,8 @@ bool X86ATTAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
// Print out jump tables referenced by the function.
EmitJumpTableInfo(MF.getJumpTableInfo(), MF);
+ O.flush();
+
// We didn't modify anything.
return false;
}