Sign in
swiftshader
/
SwiftShader
/
b6075da32ee0249f60ba86f9a85bf8b16eb44c06
/
.
/
src
/
LLVM
/
test
/
Transforms
/
TailCallElim
/
trivial_codegen_tailcall.ll
blob: 8ab7aa289cbca8a23e5743e48fb4a47a202d24b3 [
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
}