diff options
author | Chris Lattner <sabre@nondot.org> | 2010-02-03 01:49:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-02-03 01:49:49 +0000 |
commit | d26a80f666fb925956a4f19143265f5150756df0 (patch) | |
tree | 859662264ee81ba19976c78987ec1230043a5826 /lib/CodeGen | |
parent | f64159c8402ef17d14b5f7555378b2c321a4a5ab (diff) |
don't emit \n's at the start of X86AsmPrinter::runOnMachineFunction,
.o files don't like that.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95187 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 9844571f96..8456709dba 100644 --- a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -391,6 +391,8 @@ void AsmPrinter::EmitFunctionBody() { // Print out jump tables referenced by the function. EmitJumpTableInfo(); + + OutStreamer.AddBlankLine(); } |