From: Chris Lattner Date: Sat, 13 Jan 2007 00:40:40 +0000 (+0000) Subject: Remove this obsolete test. The CBE will never be able to handle zero argument X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=7cfdd0be5aadb8e074cdffe085025561f14b5880;p=oota-llvm.git 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 --- diff --git a/test/CodeGen/CBackend/2003-10-23-ZeroArgVarargs.ll b/test/CodeGen/CBackend/2003-10-23-ZeroArgVarargs.ll deleted file mode 100644 index d09236cb3db..00000000000 --- a/test/CodeGen/CBackend/2003-10-23-ZeroArgVarargs.ll +++ /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 -}