]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20000605-2.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20000605-2.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20000605-2.c b/gcc/testsuite/gcc.c-torture/execute/20000605-2.c
deleted file mode 100644 (file)
index 8a49bc6..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-struct F { int i; };
-
-void f1(struct F *x, struct F *y)
-{
-  int timeout = 0;
-  for (; ((const struct F*)x)->i < y->i ; x->i++)
-    if (++timeout > 5)
-      abort ();
-}
-
-main()
-{
-  struct F x, y;
-  x.i = 0;
-  y.i = 1;
-  f1 (&x, &y);
-  exit (0);
-}