summaryrefslogtreecommitdiff
path: root/test/FrontendC/2004-02-13-IllegalVararg.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2004-02-13-IllegalVararg.c')
-rw-r--r--test/FrontendC/2004-02-13-IllegalVararg.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/FrontendC/2004-02-13-IllegalVararg.c b/test/FrontendC/2004-02-13-IllegalVararg.c
deleted file mode 100644
index 0d003c8033ca4..0000000000000
--- a/test/FrontendC/2004-02-13-IllegalVararg.c
+++ /dev/null
@@ -1,13 +0,0 @@
-// RUN: %llvmgcc -xc %s -w -S -o - | llc
-// XFAIL: *
-// See PR2452
-
-#include <stdarg.h>
-
-float test(int X, ...) {
- va_list ap;
- float F;
- va_start(ap, X);
- F = va_arg(ap, float);
- return F;
-}