]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20000519-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20000519-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20000519-1.c b/gcc/testsuite/gcc.c-torture/execute/20000519-1.c
deleted file mode 100644 (file)
index eec5bdd..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#include <stdarg.h>
-
-int
-bar (int a, va_list ap)
-{
-  int b;
-
-  do
-    b = va_arg (ap, int);
-  while (b > 10);
-
-  return a + b;
-}
-
-int
-foo (int a, ...)
-{
-  va_list ap;
-
-  va_start (ap, a);
-  return bar (a, ap);
-}
-
-int
-main ()
-{
-  if (foo (1, 2, 3) != 3)
-    abort ();
-  return 0;
-}