1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

remove JumpTableTextSection

llvm-svn: 30746
This commit is contained in:
Chris Lattner 2006-10-05 03:14:23 +00:00
parent 08da1a510d
commit 94d1cfd32d

View 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;
}