llvm-project/llvm/test/Transforms/GlobalOpt/2009-02-15-ResolveAlias.ll

13 lines
170 B
LLVM

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