blob: 90a8163ee3213e17ffc52deaea2f436b76657fc1 [file] [log] [blame]
; RUN: llvm-as < %s | opt -tailcallelim | llvm-dis | \
; RUN: grep {tail call void @foo}
declare void @foo()
define void @bar() {
call void @foo( )
ret void
}