mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
897f9579d6
forwarding any uses). GlobalDCE can also do this, but is only run at -O3. llvm-svn: 90850
25 lines
324 B
LLVM
25 lines
324 B
LLVM
; RUN: opt < %s -globalopt -S | FileCheck %s
|
|
|
|
define internal void @f() {
|
|
; CHECK-NOT: @f
|
|
; CHECK: define void @a
|
|
ret void
|
|
}
|
|
|
|
@a = alias void ()* @f
|
|
|
|
define void @g() {
|
|
call void()* @a()
|
|
ret void
|
|
}
|
|
|
|
@b = alias internal void ()* @g
|
|
; CHECK-NOT: @b
|
|
|
|
define void @h() {
|
|
call void()* @b()
|
|
; CHECK: call void @g
|
|
ret void
|
|
}
|
|
|