commit | 2fdf82ddf5816c13fe660d6309e1e09c1550e6df | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Fri Sep 11 05:59:55 2009 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Fri Sep 11 05:59:55 2009 +0000 |
tree | 328127cecff8609fe45c7e7d3313465ae49cf1fc | |
parent | 2eaccff47f159c4a90dc8c53f9d81898f6081bd9 [diff] [blame] |
printInstruction() no longer prints a \n after itself, do it for the two instruction MOVPC32r sequence. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81509 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp b/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp index c25f2ac..1cccfa9 100644 --- a/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp +++ b/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp
@@ -307,6 +307,7 @@ TmpInst.addOperand(MCOperand::CreateExpr(MCSymbolRefExpr::Create(PICBase, OutContext))); printInstruction(&TmpInst); + O << '\n'; // Emit the label. OutStreamer.EmitLabel(PICBase);