aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-05-01 04:11:03 +0000
committerChris Lattner <sabre@nondot.org>2006-05-01 04:11:03 +0000
commitc80c43eee09e151b3f2137e405004772f0ebc1a5 (patch)
tree75166428e83504182e03e69a7f933209e3a2a837 /lib/CodeGen/AsmPrinter.cpp
parent200370fb5617a1719f0054804b412469ce486ebd (diff)
Format #APP lines a bit nicer
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28026 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter.cpp')
-rw-r--r--lib/CodeGen/AsmPrinter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter.cpp
index 48d4a20a83..b28c386788 100644
--- a/lib/CodeGen/AsmPrinter.cpp
+++ b/lib/CodeGen/AsmPrinter.cpp
@@ -34,8 +34,8 @@ AsmPrinter::AsmPrinter(std::ostream &o, TargetMachine &tm)
GlobalVarAddrSuffix(""),
FunctionAddrPrefix(""),
FunctionAddrSuffix(""),
- InlineAsmStart("#APP\n"),
- InlineAsmEnd("#NO_APP\n"),
+ InlineAsmStart("#APP\n\t"),
+ InlineAsmEnd("\t#NO_APP\n"),
ZeroDirective("\t.zero\t"),
AsciiDirective("\t.ascii\t"),
AscizDirective("\t.asciz\t"),