resurrect lost tests by renaming them to not end with .tr
[oota-llvm.git] / test / CFrontend / 2004-02-13-IllegalVararg.c.tr
diff --git a/test/CFrontend/2004-02-13-IllegalVararg.c.tr b/test/CFrontend/2004-02-13-IllegalVararg.c.tr
deleted file mode 100644 (file)
index 1f3eded..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-// RUN: %llvmgcc -xc %s -c -o - | llc
-
-#include <stdarg.h>
-
-float test(int X, ...) {
-  va_list ap;
-  float F;
-  va_start(ap, X);
-  F = va_arg(ap, float);
-  return F;
-}