Stackmap shadows should consider call returns a branch target.
[oota-llvm.git] / test / CodeGen / Mips / init-array.ll
1 ; RUN: llc -mtriple mipsel-unknown-linux < %s | FileCheck  %s
2
3 target 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
11 define internal void @test() section ".text.startup" {
12 entry:
13   ret void
14 }