forked from OSchip/llvm-project
Fix UseInitArray option for MIPS target.
llvm-svn: 163193
This commit is contained in:
parent
2db2353b21
commit
eeaaf65cb6
|
@ -26,6 +26,7 @@ SSThreshold("mips-ssection-threshold", cl::Hidden,
|
|||
|
||||
void MipsTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM){
|
||||
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
||||
InitializeELF(TM.Options.UseInitArray);
|
||||
|
||||
SmallDataSection =
|
||||
getContext().getELFSection(".sdata", ELF::SHT_PROGBITS,
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
; RUN: llc -mtriple mipsel-unknown-linux -use-init-array < %s | FileCheck %s
|
||||
|
||||
target triple = "mipsel-unknown-linux"
|
||||
|
||||
@llvm.global_ctors = appending global [1 x { i32, void ()* }] [{ i32, void ()* } { i32 65535, void ()* @test }]
|
||||
; CHECK: .section
|
||||
; CHECK: .init_array
|
||||
; CHECK-NOT: .ctors
|
||||
; CHECK: .4byte test
|
||||
|
||||
define internal void @test() section ".text.startup" {
|
||||
entry:
|
||||
ret void
|
||||
}
|
Loading…
Reference in New Issue