remove JumpTableTextSection
authorChris Lattner <sabre@nondot.org>
Thu, 5 Oct 2006 03:14:23 +0000 (03:14 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 5 Oct 2006 03:14:23 +0000 (03:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30746 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Target/TargetAsmInfo.h

index 511f5822f6c3a7fc501d5ec70525ac5725081cf5..930ad902c128a31f3cd2baa90c4b886c40320867 100644 (file)
@@ -150,11 +150,6 @@ namespace llvm {
     /// is not PIC.
     const char *JumpTableDataSection;     // Defaults to "\t.section .rodata\n"
     
-    /// JumpTableTextSection - This is the section that we SwitchToSection right
-    /// before emitting the jump tables for a function when the relocation model
-    /// is PIC.
-    const char *JumpTableTextSection;     // Defaults to "\t.text\n"
-    
     /// JumpTableDirective - if non-null, the directive to emit before a jump
     /// table.
     const char *JumpTableDirective;
@@ -359,9 +354,6 @@ namespace llvm {
     const char *getJumpTableDataSection() const {
       return JumpTableDataSection;
     }
-    const char *getJumpTableTextSection() const {
-      return JumpTableTextSection;
-    }
     const char *getStaticCtorsSection() const {
       return StaticCtorsSection;
     }