Files
llvm/test/CodeGen/Mips/init-array.ll
T

15 lines
371 B
LLVM
Raw Normal View History

2014-09-02 13:54:53 +00:00
; RUN: llc -mtriple mipsel-unknown-linux < %s | FileCheck %s
2012-09-05 06:17:17 +00:00
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
}