[llvm-commits] [llvm] r81696 - /llvm/trunk/include/llvm/MC/MCAsmInfo.h

Chris Lattner sabre at nondot.org
Sun Sep 13 12:03:09 PDT 2009


Author: lattner
Date: Sun Sep 13 14:03:08 2009
New Revision: 81696

URL: http://llvm.org/viewvc/llvm-project?rev=81696&view=rev
Log:
second part to r81695, I missed a directory.

Modified:
    llvm/trunk/include/llvm/MC/MCAsmInfo.h

Modified: llvm/trunk/include/llvm/MC/MCAsmInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/MC/MCAsmInfo.h?rev=81696&r1=81695&r2=81696&view=diff

==============================================================================
--- llvm/trunk/include/llvm/MC/MCAsmInfo.h (original)
+++ llvm/trunk/include/llvm/MC/MCAsmInfo.h Sun Sep 13 14:03:08 2009
@@ -84,10 +84,6 @@
     /// is "l" on Darwin, currently used for some ObjC metadata.
     const char *LinkerPrivateGlobalPrefix;   // Defaults to ""
     
-    /// JumpTableSpecialLabelPrefix - If not null, a extra (dead) label is
-    /// emitted before jump tables with the specified prefix.
-    const char *JumpTableSpecialLabelPrefix; // Default to null.
-    
     /// GlobalVarAddrPrefix/Suffix - If these are nonempty, these strings
     /// will enclose any GlobalVariable (that isn't a function)
     ///
@@ -369,9 +365,6 @@
     const char *getLinkerPrivateGlobalPrefix() const {
       return LinkerPrivateGlobalPrefix;
     }
-    const char *getJumpTableSpecialLabelPrefix() const {
-      return JumpTableSpecialLabelPrefix;
-    }
     const char *getGlobalVarAddrPrefix() const {
       return GlobalVarAddrPrefix;
     }





More information about the llvm-commits mailing list