llvm-6502/test/Transforms/Inline/2004-04-20-InlineLinkOnce.llx
Chris Lattner 7be1e0b478 New testcase, distilled from PR324
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13079 91177308-0d34-0410-b5e6-96231b3b80d8
2004-04-20 20:15:01 +00:00

13 lines
175 B
Plaintext

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