llvm-6502/test/Linker/2008-07-06-AliasFnDecl.ll
Anton Korobeynikov e56ac813e6 Testcase for PR2146
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53155 91177308-0d34-0410-b5e6-96231b3b80d8
2008-07-05 23:03:46 +00:00

15 lines
242 B
LLVM

; PR2146
; RUN: llvm-as %s -o %t1.bc -f
; RUN: llvm-as %p/2008-07-06-AliasFnDecl2.ll -o %t2.bc -f
; RUN: llvm-link %t1.bc %t2.bc -f -o %t3.bc
@b = alias void ()* @a
define void @a() nounwind {
entry:
br label %return
return:
ret void
}