Sign in
ara-mdk
/
platform
/
external
/
llvm
/
238bb0fd7d8cfbfca4918de5b6103c3f3e1808e0
/
.
/
test
/
Transforms
/
TailCallElim
/
trivial_codegen_tailcall.ll
blob: 7049e4d588d43b612c385ba93e4202c0668e7bbb [
file
] [
log
] [
blame
]
; RUN: opt < %s -tailcallelim -S | FileCheck %s
declare
void
@foo
()
define
void
@bar
()
{
; CHECK: tail call void @foo()
call
void
@foo
()
ret
void
}