remove obsolete testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41820 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-09-10 23:51:41 +00:00
parent 50d9d77643
commit 75e3bd5bf2

View File

@ -1,9 +0,0 @@
; RUN: llvm-upgrade < %s | llvm-as | opt -tailcallelim | llvm-dis > %t
; RUN: grep sub %t
; RUN: not grep call %t
int %test(int %X) {
%Y = sub int %X, 1
%Z = call int %test(int %Y)
ret int undef
}