linux-packaging-mono/external/llvm/test/Transforms/Inline/2004-04-15-InlineDeletesCall.ll
Xamarin Public Jenkins (auto-signing) 8625704ad8 Imported Upstream version 5.18.0.179
Former-commit-id: 67aa10e65b237e1c4537630979ee99ebe1374215
2018-10-25 08:34:57 +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
}