summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/SPARC/constructor.ll
blob: 0d2374d7e7d372604d6c6381cfa59e299ee5078c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
; RUN: llc -mtriple sparc-sun-solaris2.11 -use-ctors < %s | FileCheck --check-prefix=CTOR %s
; RUN: llc -mtriple sparc-sun-solaris2.11 < %s | FileCheck --check-prefix=INIT-ARRAY %s
@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

define void @f() {
entry:
  ret void
}

define void @g() {
entry:
  ret void
}

; CTOR:    .section  .ctors.65520,#alloc,#write
; CTOR-NEXT: .p2align      2
; CTOR-NEXT: .word  g
; CTOR-NEXT: .section      .ctors,#alloc,#write
; CTOR-NEXT: .p2align      2
; CTOR-NEXT: .word  f

; INIT-ARRAY:    .section  .init_array.15,#alloc,#write
; INIT-ARRAY-NEXT: .p2align  2
; INIT-ARRAY-NEXT: .word g
; INIT-ARRAY-NEXT: .section  .init_array,#alloc,#write
; INIT-ARRAY-NEXT: .p2align  2
; INIT-ARRAY-NEXT: .word f
OpenPOWER on IntegriCloud