1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00
llvm-mirror/test/Transforms/Inline/2004-04-15-InlineDeletesCall.ll
Bill Wendling 47fa03b39d Replace more uses of 'unwind' in the tests with calls to landingpad and
resume. Note that some of these tests were basically dead.

llvm-svn: 140076
2011-09-19 22:11:35 +00:00

21 lines
408 B
LLVM

; RUN: opt < %s -inline -disable-output
; Inlining the first call caused the inliner function to delete the second
; call. Then the inliner tries to inline the second call, which no longer
; exists.
define internal void @Callee1() {
unreachable
}
define void @Callee2() {
ret void
}
define void @caller() {
call void @Callee1( )
call void @Callee2( )
ret void
}