xref: /minix3/external/bsd/llvm/dist/llvm/test/CodeGen/AArch64/init-array.ll (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1; RUN: llc -mtriple=aarch64-none-linux-gnu -verify-machineinstrs -o - %s | FileCheck %s
2; RUN: llc -mtriple=aarch64-none-none-eabi -verify-machineinstrs -o - %s | FileCheck %s
3
4define internal void @_GLOBAL__I_a() section ".text.startup" {
5  ret void
6}
7
8@llvm.global_ctors = appending global [1 x { i32, void ()* }] [{ i32, void ()* } { i32 65535, void ()* @_GLOBAL__I_a }]
9
10; CHECK: .section .init_array
11