blob: 1ca182dae7a5609ee8a67bb5d58217137b308d40 [file] [log] [blame]
Rafael Espindola4dd36772014-09-02 13:54:53 +00001; RUN: llc -mtriple mipsel-unknown-linux < %s | FileCheck %s
Logan Chieneeaaf652012-09-05 06:17:17 +00002
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}