aboutsummaryrefslogtreecommitdiffstats
path: root/test/Linker/Inputs/visibility.ll
blob: 2ab58fd3bd0053e8ba0a00cb21822158c7fad767 (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
$c1 = comdat any

; Variables
@v1 = weak hidden global i32 0
@v2 = weak protected global i32 0
@v3 = weak hidden global i32 0
@v4 = hidden global i32 1, comdat $c1

; Aliases
@a1 = weak hidden alias i32* @v1
@a2 = weak protected alias i32* @v2
@a3 = weak hidden alias i32* @v3

; Functions
define weak hidden void @f1() {
entry:
  ret void
}
define weak protected void @f2() {
entry:
  ret void
}
define weak hidden void @f3() {
entry:
  ret void
}