summaryrefslogtreecommitdiff
path: root/test/CodeGen/CBackend
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-01-13 00:40:40 +0000
committerChris Lattner <sabre@nondot.org>2007-01-13 00:40:40 +0000
commit7cfdd0be5aadb8e074cdffe085025561f14b5880 (patch)
tree2dda3e1b5da36f36d4cf5823009f072bac0d4b1a /test/CodeGen/CBackend
parentf947e9249606599a1e95bff7d8d3e4e4cf420037 (diff)
downloadllvm-7cfdd0be5aadb8e074cdffe085025561f14b5880.tar.gz
llvm-7cfdd0be5aadb8e074cdffe085025561f14b5880.tar.bz2
llvm-7cfdd0be5aadb8e074cdffe085025561f14b5880.tar.xz
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
Diffstat (limited to 'test/CodeGen/CBackend')
-rw-r--r--test/CodeGen/CBackend/2003-10-23-ZeroArgVarargs.ll12
1 files changed, 0 insertions, 12 deletions
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 d09236cb3d..0000000000
--- 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
-}