Sign in
llvm
/
llvm-project
/
llvm
/
b72b4128f221fd5086a1ae46aba7b2fcbf0d6384
/
.
/
test
/
Transforms
/
Inline
/
2004-10-17-InlineFunctionWithoutReturn.ll
blob: 12b9be8d47d606d66e8aa4aa891322f704c3f990 [
file
] [
log
] [
blame
]
; RUN: opt < %s -passes=inline -disable-output
define
i32
@test
()
{
unreachable
}
define
i32
@caller
()
{
%X
=
call
i32
@test
(
)
; <i32> [#uses=1]
ret
i32
%X
}