]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - opencl/llvm.git/blob - test/Transforms/Inline/2004-04-20-InlineLinkOnce.ll
Updates to sync with changes in upstream.
[opencl/llvm.git] / test / Transforms / Inline / 2004-04-20-InlineLinkOnce.ll
1 ; RUN: opt < %s -inline -prune-eh -disable-output
3 define linkonce void @caller() {
4         call void @callee( )
5         ret void
6 }
8 define linkonce void @callee() {
9         ret void
10 }