2014-10-31 13:54:15 +08:00
|
|
|
; RUN: llvm-link %s %p/Inputs/visibility.ll -S | FileCheck %s
|
|
|
|
; RUN: llvm-link %p/Inputs/visibility.ll %s -S | FileCheck %s
|
2012-01-06 07:02:01 +08:00
|
|
|
|
2014-10-31 13:54:15 +08:00
|
|
|
; The values in this file are strong, the ones in Inputs/visibility.ll are weak,
|
2012-01-06 07:02:01 +08:00
|
|
|
; but we should still get the visibility from them.
|
|
|
|
|
2014-11-02 21:28:57 +08:00
|
|
|
|
|
|
|
$c1 = comdat any
|
|
|
|
|
2012-01-06 07:02:01 +08:00
|
|
|
; Variables
|
2014-11-02 21:28:57 +08:00
|
|
|
; CHECK-DAG: @v1 = hidden global i32 0
|
2012-01-06 07:02:01 +08:00
|
|
|
@v1 = global i32 0
|
|
|
|
|
2014-11-02 21:28:57 +08:00
|
|
|
; CHECK-DAG: @v2 = protected global i32 0
|
2012-01-06 07:02:01 +08:00
|
|
|
@v2 = global i32 0
|
|
|
|
|
2014-11-02 21:28:57 +08:00
|
|
|
; CHECK-DAG: @v3 = hidden global i32 0
|
2012-01-06 07:02:01 +08:00
|
|
|
@v3 = protected global i32 0
|
|
|
|
|
2015-01-07 06:55:16 +08:00
|
|
|
; CHECK-DAG: @v4 = hidden global i32 1, comdat($c1)
|
|
|
|
@v4 = global i32 1, comdat($c1)
|
2012-01-06 07:02:01 +08:00
|
|
|
|
|
|
|
; Aliases
|
2015-09-11 11:22:04 +08:00
|
|
|
; CHECK: @a1 = hidden alias i32, i32* @v1
|
|
|
|
@a1 = alias i32, i32* @v1
|
2012-01-06 07:02:01 +08:00
|
|
|
|
2015-09-11 11:22:04 +08:00
|
|
|
; CHECK: @a2 = protected alias i32, i32* @v2
|
|
|
|
@a2 = alias i32, i32* @v2
|
2012-01-06 07:02:01 +08:00
|
|
|
|
2015-09-11 11:22:04 +08:00
|
|
|
; CHECK: @a3 = hidden alias i32, i32* @v3
|
|
|
|
@a3 = protected alias i32, i32* @v3
|
2012-01-06 07:02:01 +08:00
|
|
|
|
|
|
|
|
|
|
|
; Functions
|
|
|
|
; CHECK: define hidden void @f1()
|
|
|
|
define void @f1() {
|
|
|
|
entry:
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK: define protected void @f2()
|
|
|
|
define void @f2() {
|
|
|
|
entry:
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK: define hidden void @f3()
|
|
|
|
define protected void @f3() {
|
|
|
|
entry:
|
|
|
|
ret void
|
|
|
|
}
|