1; RUN: opt < %s -tailcallelim -S | \ 2; RUN: grep "tail call void @foo" 3 4 5declare void @foo() 6 7define void @bar() { 8 call void @foo( ) 9 ret void 10} 11 12