Print a grouping around inline asm blocks so that we can tell when we are

using them.

llvm-svn: 28134
This commit is contained in:
Chris Lattner 2006-05-05 21:50:04 +00:00
parent c22d4bede5
commit 8b9e11c110
1 changed files with 2 additions and 1 deletions

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 {