mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 22:04:55 +00:00
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:
parent
f6dc792df1
commit
fd91d8dd7e
@ -26,6 +26,7 @@ SSThreshold("mips-ssection-threshold", cl::Hidden,
|
|||||||
|
|
||||||
void MipsTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM){
|
void MipsTargetObjectFile::Initialize(MCContext &Ctx, const TargetMachine &TM){
|
||||||
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
TargetLoweringObjectFileELF::Initialize(Ctx, TM);
|
||||||
|
InitializeELF(TM.Options.UseInitArray);
|
||||||
|
|
||||||
SmallDataSection =
|
SmallDataSection =
|
||||||
getContext().getELFSection(".sdata", ELF::SHT_PROGBITS,
|
getContext().getELFSection(".sdata", ELF::SHT_PROGBITS,
|
||||||
|
14
test/CodeGen/Mips/init-array.ll
Normal file
14
test/CodeGen/Mips/init-array.ll
Normal 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
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user