From: Chris Lattner Date: Fri, 5 May 2006 21:50:04 +0000 (+0000) Subject: Print a grouping around inline asm blocks so that we can tell when we are X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=35c3913328b254871731f1f5cc092c303a2cd378;p=oota-llvm.git 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 --- diff --git a/lib/Target/PowerPC/PPCAsmPrinter.cpp b/lib/Target/PowerPC/PPCAsmPrinter.cpp index dbd3b03e7bc..679c96534bf 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 {