Use the llvm-upgrade program to upgrade llvm assembly.
[oota-llvm.git] / test / Transforms / Inline / 2004-04-20-InlineLinkOnce.llx
1 ; RUN: llvm-upgrade < %s | llvm-as | opt -inline -prune-eh -disable-output
2
3 implementation
4
5 linkonce void %caller() {
6         call void %callee()
7         ret void
8 }
9
10 linkonce void %callee() {
11         ret void
12 }