diff options
author | Chris Lattner <sabre@nondot.org> | 2006-10-05 03:14:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-10-05 03:14:23 +0000 |
commit | 671d77bc8ea1ea50141ae87bce030110ac9c73f1 (patch) | |
tree | 0873dcb367f1a28a56e462ee589de42b58569242 /include/llvm/Target | |
parent | a66ba5f70ba15370fd68a84ccaf220d60f7d1b95 (diff) | |
download | external_llvm-671d77bc8ea1ea50141ae87bce030110ac9c73f1.zip external_llvm-671d77bc8ea1ea50141ae87bce030110ac9c73f1.tar.gz external_llvm-671d77bc8ea1ea50141ae87bce030110ac9c73f1.tar.bz2 |
remove JumpTableTextSection
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30746 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target')
-rw-r--r-- | include/llvm/Target/TargetAsmInfo.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/llvm/Target/TargetAsmInfo.h b/include/llvm/Target/TargetAsmInfo.h index 511f582..930ad90 100644 --- a/include/llvm/Target/TargetAsmInfo.h +++ b/include/llvm/Target/TargetAsmInfo.h @@ -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; } |