remove MAI::JumpTableSpecialLabelPrefix now that MAI
authorChris Lattner <sabre@nondot.org>
Sun, 13 Sep 2009 19:02:16 +0000 (19:02 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 13 Sep 2009 19:02:16 +0000 (19:02 +0000)
has real information about linker private linkage.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81695 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/AsmPrinter.cpp
lib/MC/MCAsmInfo.cpp
lib/MC/MCAsmInfoDarwin.cpp

index c6339ebfc4ddd3fb06351925194cc12e9ae49672..e9ddadab7c41d00399af827675aa8d669e30086f 100644 (file)
@@ -375,13 +375,13 @@ void AsmPrinter::EmitJumpTableInfo(MachineJumpTableInfo *MJTI,
         if (EmittedSets.insert(JTBBs[ii]))
           printPICJumpTableSetLabel(i, JTBBs[ii]);
     
-    // On some targets (e.g. darwin) we want to emit two consequtive labels
+    // On some targets (e.g. Darwin) we want to emit two consequtive labels
     // before each jump table.  The first label is never referenced, but tells
     // the assembler and linker the extents of the jump table object.  The
     // second label is actually referenced by the code.
-    if (JTInDiffSection) {
-      if (const char *JTLabelPrefix = MAI->getJumpTableSpecialLabelPrefix())
-        O << JTLabelPrefix << "JTI" << getFunctionNumber() << '_' << i << ":\n";
+    if (JTInDiffSection && MAI->getLinkerPrivateGlobalPrefix()[0]) {
+      O << MAI->getLinkerPrivateGlobalPrefix()
+        << "JTI" << getFunctionNumber() << '_' << i << ":\n";
     }
     
     O << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber() 
index 65625608f024ce4b532c9bc587a3742b22ca80a7..1630482de42a866c93fcbb408c9b63708494d215 100644 (file)
@@ -30,7 +30,6 @@ MCAsmInfo::MCAsmInfo() {
   GlobalPrefix = "";
   PrivateGlobalPrefix = ".";
   LinkerPrivateGlobalPrefix = "";
-  JumpTableSpecialLabelPrefix = 0;
   GlobalVarAddrPrefix = "";
   GlobalVarAddrSuffix = "";
   FunctionAddrPrefix = "";
index 38b9e5b90b5f73da73ac21dae073df2f8e5c238b..d6a4e740ed5197585d9230e045c810b18eea2345 100644 (file)
@@ -30,11 +30,6 @@ MCAsmInfoDarwin::MCAsmInfoDarwin() {
   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.
-  JumpTableSpecialLabelPrefix = "l";
-    
   // Directives:
   WeakDefDirective = "\t.weak_definition ";
   WeakRefDirective = "\t.weak_reference ";
@@ -54,6 +49,5 @@ MCAsmInfoDarwin::MCAsmInfoDarwin() {
   Is_EHSymbolPrivate = false;
   GlobalEHDirective = "\t.globl\t";
   SupportsWeakOmittedEHFrame = false;
-
 }