Remove VISIBILITY_HIDDEN from this file.
[llvm/avr.git] / test / CodeGen / X86 / attribute-sections.ll
blob0dba6e6ff6d69a55d7a254efa0ebb28dfca7c3df
1 ; RUN: llvm-as < %s | llc -mtriple=i386-unknown-linux-gnu | FileCheck %s -check-prefix=LINUX
3 declare i32 @foo()
4 @G0 = global i32 ()* @foo, section ".init_array"
6 ; LINUX:  .section  .init_array,"aw"
7 ; LINUX:  .globl G0
9 @G1 = global i32 ()* @foo, section ".fini_array"
11 ; LINUX:  .section  .fini_array,"aw"
12 ; LINUX:  .globl G1
14 @G2 = global i32 ()* @foo, section ".preinit_array"
16 ; LINUX:  .section .preinit_array,"aw"
17 ; LINUX:  .globl G2