Sign in
llvm
/
llvm-project
/
llvm
/
62bc00088b227df450ff7323c48063fb4a148bc6
/
.
/
test
/
Transforms
/
TailCallElim
/
trivial_codegen_tailcall.ll
blob: 3d01d1709952a3ebb0ee045e7517108875db27a2 [
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
}