Print *some* grouping around inline asm blocks so we know where they are.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28133 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-05-05 21:48:50 +00:00
parent 1c05997bd8
commit 7660ebc90a

View File

@ -66,7 +66,8 @@ bool X86SharedAsmPrinter::doInitialization(Module &M) {
forDarwin = true;
StaticCtorsSection = ".mod_init_func";
StaticDtorsSection = ".mod_term_func";
InlineAsmStart = InlineAsmEnd = ""; // Don't use #APP/#NO_APP
InlineAsmStart = "# InlineAsm Start";
InlineAsmEnd = "# InlineAsm End";
break;
case X86Subtarget::isCygwin:
GlobalPrefix = "_";