new testcase

llvm-svn: 21837
This commit is contained in:
Chris Lattner 2005-05-10 00:33:36 +00:00
parent bfc796f622
commit abb36674a8
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
; RUN: llvm-as < %s | opt -tailcallelim | llvm-dis | grep 'tail call void %foo'
declare void %foo()
void %bar() {
call void %foo()
ret void
}