Implement bswap
[llvm/msp430.git] / test / Transforms / Inline / 2004-04-15-InlineDeletesCall.ll
blob8a2f8e29edff17208c674c8df99926c1f87480af
1 ; RUN: llvm-as < %s | opt -inline -disable-output
3 ; Inlining the first call caused the inliner function to delete the second
4 ; call.  Then the inliner tries to inline the second call, which no longer
5 ; exists.
7 define internal void @Callee1() {
8         unwind
11 define void @Callee2() {
12         ret void
15 define void @caller() {
16         call void @Callee1( )
17         call void @Callee2( )
18         ret void