diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-01 04:11:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-01 04:11:03 +0000 |
commit | 25f55ae74a970ea876c814c5e75a516c271742d6 (patch) | |
tree | b1088ed121def2a56ce363fb7ac6d529723d4cbd /llvm/lib/CodeGen/AsmPrinter.cpp | |
parent | f71f0f2e0bd05a32a01a20bc5bc2ebd5db88c9f1 (diff) | |
download | bcm5719-llvm-25f55ae74a970ea876c814c5e75a516c271742d6.tar.gz bcm5719-llvm-25f55ae74a970ea876c814c5e75a516c271742d6.zip |
Format #APP lines a bit nicer
llvm-svn: 28026
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter.cpp index 48d4a20a83f..b28c3867889 100644 --- a/llvm/lib/CodeGen/AsmPrinter.cpp +++ b/llvm/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"), |