diff options
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter.cpp index eb0f2f1b367..aa71ee0b6db 100644 --- a/llvm/lib/CodeGen/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter.cpp @@ -954,7 +954,7 @@ void AsmPrinter::printInlineAsm(const MachineInstr *MI) const { } case '\n': ++LastEmitted; // Consume newline character. - O << "\n\t"; // Indent code with newline. + O << "\n"; // Indent code with newline. break; case '$': { ++LastEmitted; // Consume '$' character. |