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