blob: dca9cd8e8fa426e3b583114658057c5f7db05b78 [file] [log] [blame]
Anton Korobeynikove6ca8112008-07-05 23:03:46 +00001; PR2146
2; RUN: llvm-as %s -o %t1.bc -f
3; RUN: llvm-as %p/2008-07-06-AliasFnDecl2.ll -o %t2.bc -f
4; RUN: llvm-link %t1.bc %t2.bc -f -o %t3.bc
5
6@b = alias void ()* @a
7
8define void @a() nounwind {
9entry:
10 br label %return
11
12return:
13 ret void
14}