X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FTarget%2FDarwinTargetAsmInfo.cpp;h=c37b41b7001743c098b220d9d94e0d05749f04dc;hb=a8c58d572b294c90bde4b78a0121d73db78590db;hp=722162463350e8cee458cb7ce4745133cbb8b1ab;hpb=e2811a74803d24fff45a186d2871377d248cec1c;p=oota-llvm.git diff --git a/lib/Target/DarwinTargetAsmInfo.cpp b/lib/Target/DarwinTargetAsmInfo.cpp index 72216246335..c37b41b7001 100644 --- a/lib/Target/DarwinTargetAsmInfo.cpp +++ b/lib/Target/DarwinTargetAsmInfo.cpp @@ -26,6 +26,10 @@ DarwinTargetAsmInfo::DarwinTargetAsmInfo() { AllowQuotesInName = true; HasSingleParameterDotFile = false; + AlignmentIsInBytes = false; + InlineAsmStart = " InlineAsm Start"; + InlineAsmEnd = " InlineAsm End"; + // In non-PIC modes, emit a special label before jump tables so that the // linker can perform more accurate dead code stripping. We do not check the // relocation model here since it can be overridden later. @@ -40,11 +44,16 @@ DarwinTargetAsmInfo::DarwinTargetAsmInfo() { ZeroFillDirective = "\t.zerofill\t"; // Uses .zerofill SetDirective = "\t.set"; ProtectedDirective = "\t.globl\t"; + HasDotTypeDotSizeDirective = false; + UsedDirective = "\t.no_dead_strip\t"; // _foo.eh symbols are currently always exported so that the linker knows // about them. This is not necessary on 10.6 and later, but it // doesn't hurt anything. // FIXME: I need to get this from Triple. Is_EHSymbolPrivate = false; + GlobalEHDirective = "\t.globl\t"; + SupportsWeakOmittedEHFrame = false; + }