Remove this obsolete test. The CBE will never be able to handle zero argument

vararg functions.

llvm-svn: 33174
This commit is contained in:
Chris Lattner 2007-01-13 00:40:40 +00:00
parent 13958b3a3c
commit ae3b372318
1 changed files with 0 additions and 12 deletions

View File

@ -1,12 +0,0 @@
; XFAIL: *
; RUN: llvm-as < %s | llc -march=c
declare i8* %llvm.va_start()
declare void %llvm.va_end(i8*)
void %test(...) {
%P = call i8* %llvm.va_start()
call void %llvm.va_end(i8* %P)
ret void
}