Fix UseInitArray option for MIPS target.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163193 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Logan Chien 2012-09-05 06:17:17 +00:00
parent f6dc792df1
commit fd91d8dd7e
2 changed files with 15 additions and 0 deletions

View File

@ -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,

View File

@ -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
}