1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/Transforms/GlobalOpt/2009-02-15-ResolveAlias.ll
Duncan Sands 0e6fcb078c If the target of an alias has internal linkage, then the
alias can be morphed into the target.  Implement this
transform, and fix a crash in the existing transform at
the same time.

llvm-svn: 64583
2009-02-15 09:56:08 +00:00

13 lines
188 B
LLVM

; RUN: llvm-as < %s | opt -globalopt | llvm-dis | grep {define void @a}
define internal void @f() {
ret void
}
@a = alias void ()* @f
define void @g() {
call void()* @a()
ret void
}