1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00
llvm-mirror/test/Linker/2008-07-06-AliasFnDecl2.ll
Anton Korobeynikov 69c88b40ed Testcase for PR2146
llvm-svn: 53155
2008-07-05 23:03:46 +00:00

14 lines
184 B
LLVM

; This file is used by 2008-07-06-AliasFnDecl2.ll
; RUN: true
define void @c() nounwind {
entry:
call void @b( ) nounwind
br label %return
return:
ret void
}
declare void @b()