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
This commit is contained in:
Chris Lattner 2006-05-05 21:50:04 +00:00
parent 7660ebc90a
commit 35c3913328

View File

@ -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 {