1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Define StaticCtorsSection and StaticDtorsSection for ARM.

llvm-svn: 32763
This commit is contained in:
Lauro Ramos Venancio 2006-12-28 13:13:00 +00:00
parent 7bfe536783
commit c87ce8ee4b

View File

@ -24,4 +24,6 @@ ARMTargetAsmInfo::ARMTargetAsmInfo(const ARMTargetMachine &TM) {
ConstantPoolSection = "\t.text\n";
AlignmentIsInBytes = false;
WeakRefDirective = "\t.weak\t";
StaticCtorsSection = "\t.section .ctors,\"aw\",%progbits";
StaticDtorsSection = "\t.section .dtors,\"aw\",%progbits";
}