mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-27 14:24:40 +00:00
Don't bother setting JumpTableTextSection, it is about to disappear
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30745 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -19,5 +19,4 @@ AlphaTargetAsmInfo::AlphaTargetAsmInfo(const AlphaTargetMachine &TM) {
|
|||||||
AlignmentIsInBytes = false;
|
AlignmentIsInBytes = false;
|
||||||
PrivateGlobalPrefix = "$";
|
PrivateGlobalPrefix = "$";
|
||||||
JumpTableDirective = ".gprel32";
|
JumpTableDirective = ".gprel32";
|
||||||
JumpTableTextSection = "\t.section .rodata\n";
|
|
||||||
}
|
}
|
||||||
|
@ -28,7 +28,6 @@ DarwinTargetAsmInfo::DarwinTargetAsmInfo(const PPCTargetMachine &TM) {
|
|||||||
AlignmentIsInBytes = false;
|
AlignmentIsInBytes = false;
|
||||||
ConstantPoolSection = "\t.const\t";
|
ConstantPoolSection = "\t.const\t";
|
||||||
JumpTableDataSection = ".const";
|
JumpTableDataSection = ".const";
|
||||||
JumpTableTextSection = "\t.text";
|
|
||||||
LCOMMDirective = "\t.lcomm\t";
|
LCOMMDirective = "\t.lcomm\t";
|
||||||
StaticCtorsSection = ".mod_init_func";
|
StaticCtorsSection = ".mod_init_func";
|
||||||
StaticDtorsSection = ".mod_term_func";
|
StaticDtorsSection = ".mod_term_func";
|
||||||
|
@ -46,7 +46,6 @@ TargetAsmInfo::TargetAsmInfo() :
|
|||||||
SectionEndDirectiveSuffix(0),
|
SectionEndDirectiveSuffix(0),
|
||||||
ConstantPoolSection("\t.section .rodata\n"),
|
ConstantPoolSection("\t.section .rodata\n"),
|
||||||
JumpTableDataSection("\t.section .rodata\n"),
|
JumpTableDataSection("\t.section .rodata\n"),
|
||||||
JumpTableTextSection("\t.text\n"),
|
|
||||||
JumpTableDirective(0),
|
JumpTableDirective(0),
|
||||||
StaticCtorsSection("\t.section .ctors,\"aw\",@progbits"),
|
StaticCtorsSection("\t.section .ctors,\"aw\",@progbits"),
|
||||||
StaticDtorsSection("\t.section .dtors,\"aw\",@progbits"),
|
StaticDtorsSection("\t.section .dtors,\"aw\",@progbits"),
|
||||||
|
Reference in New Issue
Block a user