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

vararg functions.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33174 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-01-13 00:40:40 +00:00
parent f947e92496
commit 7cfdd0be5a

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
}