2014-09-02 13:54:53 +00:00
|
|
|
; RUN: llc -mtriple x86_64-pc-linux -use-ctors < %s | FileCheck --check-prefix=CTOR %s
|
|
|
|
; RUN: llc -mtriple x86_64-pc-linux < %s | FileCheck --check-prefix=INIT-ARRAY %s
|
2015-03-11 16:16:09 +00:00
|
|
|
; RUN: llc -mtriple x86_64-unknown-nacl < %s | FileCheck --check-prefix=NACL %s
|
2014-09-04 23:03:58 +00:00
|
|
|
@llvm.global_ctors = appending global [2 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @f, i8* null}, { i32, void ()*, i8* } { i32 15, void ()* @g, i8* @v }]
|
|
|
|
|
|
|
|
@v = weak_odr global i8 0
|
2012-06-19 00:48:28 +00:00
|
|
|
|
|
|
|
define void @f() {
|
|
|
|
entry:
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @g() {
|
|
|
|
entry:
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-09-05 18:03:38 +00:00
|
|
|
; CTOR: .section .ctors.65520,"aGw",@progbits,v,comdat
|
2012-06-19 00:48:28 +00:00
|
|
|
; CTOR-NEXT: .align 8
|
|
|
|
; CTOR-NEXT: .quad g
|
|
|
|
; CTOR-NEXT: .section .ctors,"aw",@progbits
|
|
|
|
; CTOR-NEXT: .align 8
|
|
|
|
; CTOR-NEXT: .quad f
|
|
|
|
|
2014-09-05 18:03:38 +00:00
|
|
|
; INIT-ARRAY: .section .init_array.15,"aGw",@init_array,v,comdat
|
2012-06-19 00:48:28 +00:00
|
|
|
; INIT-ARRAY-NEXT: .align 8
|
|
|
|
; INIT-ARRAY-NEXT: .quad g
|
|
|
|
; INIT-ARRAY-NEXT: .section .init_array,"aw",@init_array
|
|
|
|
; INIT-ARRAY-NEXT: .align 8
|
|
|
|
; INIT-ARRAY-NEXT: .quad f
|
2015-03-11 16:16:09 +00:00
|
|
|
|
|
|
|
; NACL: .section .init_array.15,"aGw",@init_array,v,comdat
|
|
|
|
; NACL-NEXT: .align 4
|
|
|
|
; NACL-NEXT: .long g
|
|
|
|
; NACL-NEXT: .section .init_array,"aw",@init_array
|
|
|
|
; NACL-NEXT: .align 4
|
|
|
|
; NACL-NEXT: .long f
|