diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-05-05 21:50:04 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-05-05 21:50:04 +0000 |
| commit | 35c3913328b254871731f1f5cc092c303a2cd378 (patch) | |
| tree | a83f806f2aee379dd61be694b62a5f1b1c9bec84 /lib/Target/PowerPC/PPCAsmPrinter.cpp | |
| parent | 7660ebc90ab1a8ca64f7df20cec19106abaf8e35 (diff) | |
Print a grouping around inline asm blocks so that we can tell when we are
using them.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28134 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCAsmPrinter.cpp')
| -rw-r--r-- | lib/Target/PowerPC/PPCAsmPrinter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCAsmPrinter.cpp b/lib/Target/PowerPC/PPCAsmPrinter.cpp index dbd3b03e7b..679c96534b 100644 --- a/lib/Target/PowerPC/PPCAsmPrinter.cpp +++ b/lib/Target/PowerPC/PPCAsmPrinter.cpp @@ -282,7 +282,8 @@ namespace { LCOMMDirective = "\t.lcomm\t"; StaticCtorsSection = ".mod_init_func"; StaticDtorsSection = ".mod_term_func"; - InlineAsmStart = InlineAsmEnd = ""; // Don't use #APP/#NO_APP + InlineAsmStart = "# InlineAsm Start"; + InlineAsmEnd = "# InlineAsm End"; } virtual const char *getPassName() const { |
