Sign in
llvm
/
llvm-project
/
llvm
/
9544250b16f57af12b705fa2e4fd81a7af947f47
/
.
/
test
/
Transforms
/
TailCallElim
/
trivial_codegen_tailcall.ll
blob: c9da377755e58b52a33c4c5ae44f0c5a10bced85 [
file
] [
log
] [
blame
]
; RUN: opt %s -tailcallelim -S | \
; RUN: grep {tail call void @foo}
declare
void
@foo
()
define
void
@bar
()
{
call
void
@foo
(
)
ret
void
}