1; RUN: llc -mtriple mipsel-unknown-linux -use-init-array < %s | FileCheck  %s
2
3target triple = "mipsel-unknown-linux"
4
5@llvm.global_ctors = appending global [1 x { i32, void ()* }] [{ i32, void ()* } { i32 65535, void ()* @test }]
6; CHECK: .section
7; CHECK: .init_array
8; CHECK-NOT: .ctors
9; CHECK: .4byte test
10
11define internal void @test() section ".text.startup" {
12entry:
13  ret void
14}
15