]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/loop-8.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / loop-8.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/loop-8.c b/gcc/testsuite/gcc.c-torture/execute/loop-8.c
deleted file mode 100644 (file)
index e8d8cb5..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-double a[3] = { 0.0, 1.0, 2.0 };
-
-void bar (int x, double *y)
-{
-  if (x || *y != 1.0)
-    abort ();
-}
-
-int main ()
-{
-  double c;
-  int d;
-  for (d = 0; d < 3; d++)
-  {
-    c = a[d];
-    if (c > 0.0) goto e;
-  }
-  bar(1, &c);
-  exit (1);
-e:
-  bar(0, &c);
-  exit (0);
-}