diff options
author | Chris Lattner <sabre@nondot.org> | 2007-01-13 00:40:40 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-01-13 00:40:40 +0000 |
commit | 7cfdd0be5aadb8e074cdffe085025561f14b5880 (patch) | |
tree | 2dda3e1b5da36f36d4cf5823009f072bac0d4b1a /test/CodeGen/CBackend | |
parent | f947e9249606599a1e95bff7d8d3e4e4cf420037 (diff) | |
download | external_llvm-7cfdd0be5aadb8e074cdffe085025561f14b5880.zip external_llvm-7cfdd0be5aadb8e074cdffe085025561f14b5880.tar.gz external_llvm-7cfdd0be5aadb8e074cdffe085025561f14b5880.tar.bz2 |
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.ll | 12 |
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 d09236c..0000000 --- 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 -} |