[llvm-commits] CVS: llvm/include/llvm/Target/TargetAsmInfo.h
Chris Lattner
sabre at nondot.org
Wed Oct 4 20:14:38 PDT 2006
Changes in directory llvm/include/llvm/Target:
TargetAsmInfo.h updated: 1.7 -> 1.8
---
Log message:
remove JumpTableTextSection
---
Diffs of the changes: (+0 -8)
TargetAsmInfo.h | 8 --------
1 files changed, 8 deletions(-)
Index: llvm/include/llvm/Target/TargetAsmInfo.h
diff -u llvm/include/llvm/Target/TargetAsmInfo.h:1.7 llvm/include/llvm/Target/TargetAsmInfo.h:1.8
--- llvm/include/llvm/Target/TargetAsmInfo.h:1.7 Wed Oct 4 21:41:43 2006
+++ llvm/include/llvm/Target/TargetAsmInfo.h Wed Oct 4 22:14:23 2006
@@ -150,11 +150,6 @@
/// 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 @@
const char *getJumpTableDataSection() const {
return JumpTableDataSection;
}
- const char *getJumpTableTextSection() const {
- return JumpTableTextSection;
- }
const char *getStaticCtorsSection() const {
return StaticCtorsSection;
}
More information about the llvm-commits
mailing list