Darwin doesn't support #APP/#NO_APP

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26066 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-02-08 23:42:22 +00:00
parent d6c65ea924
commit 418caa1356
2 changed files with 3 additions and 2 deletions

View File

@ -246,8 +246,7 @@ namespace {
DarwinDwarfWriter DW; DarwinDwarfWriter DW;
DarwinAsmPrinter(std::ostream &O, TargetMachine &TM) DarwinAsmPrinter(std::ostream &O, TargetMachine &TM)
: PPCAsmPrinter(O, TM), DW(O, this) : PPCAsmPrinter(O, TM), DW(O, this) {
{
CommentString = ";"; CommentString = ";";
GlobalPrefix = "_"; GlobalPrefix = "_";
PrivateGlobalPrefix = "L"; // Marker for constant pool idxs PrivateGlobalPrefix = "L"; // Marker for constant pool idxs
@ -258,6 +257,7 @@ namespace {
LCOMMDirective = "\t.lcomm\t"; LCOMMDirective = "\t.lcomm\t";
StaticCtorsSection = ".mod_init_func"; StaticCtorsSection = ".mod_init_func";
StaticDtorsSection = ".mod_term_func"; StaticDtorsSection = ".mod_term_func";
InlineAsmStart = InlineAsmEnd = ""; // Don't use #APP/#NO_APP
} }
virtual const char *getPassName() const { virtual const char *getPassName() const {

View File

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