Remove a few tests which no longer hold for deadargelim (since it is now
[oota-llvm.git] / test / Transforms / Inline / 2004-04-20-InlineLinkOnce.ll
1 ; RUN: llvm-as < %s | opt -inline -prune-eh -disable-output
2
3 define linkonce void @caller() {
4         call void @callee( )
5         ret void
6 }
7
8 define linkonce void @callee() {
9         ret void
10 }
11