Remove this obsolete test. The CBE will never be able to handle zero argument
authorChris Lattner <sabre@nondot.org>
Sat, 13 Jan 2007 00:40:40 +0000 (00:40 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 13 Jan 2007 00:40:40 +0000 (00:40 +0000)
vararg functions.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33174 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/CBackend/2003-10-23-ZeroArgVarargs.ll [deleted file]

diff --git a/test/CodeGen/CBackend/2003-10-23-ZeroArgVarargs.ll b/test/CodeGen/CBackend/2003-10-23-ZeroArgVarargs.ll
deleted file mode 100644 (file)
index d09236c..0000000
+++ /dev/null
@@ -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
-}