New testcase, distilled from PR324

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13079 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-04-20 20:15:01 +00:00
parent 3f083d5de6
commit 7be1e0b478

View File

@ -0,0 +1,12 @@
; RUN: llvm-as < %s | opt -inline -prune-eh -disable-output
implementation
linkonce void %caller() {
call void %callee()
ret void
}
linkonce void %callee() {
ret void
}