• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: opt < %s -globalopt -S | FileCheck %s
2
3define internal void @f() {
4; CHECK-NOT: @f(
5; CHECK: define void @a
6	ret void
7}
8
9@a = alias void (), void ()* @f
10
11define void @g() {
12	call void() @a()
13	ret void
14}
15
16@b = internal alias  void (),  void ()* @g
17; CHECK-NOT: @b
18
19define void @h() {
20	call void() @b()
21; CHECK: call void @g
22	ret void
23}
24
25