]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/930518-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930518-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/930518-1.c b/gcc/testsuite/gcc.c-torture/execute/930518-1.c
deleted file mode 100644 (file)
index 44bdf96..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-int bar = 0;
-
-f (p)
-     int *p;
-{
-  int foo = 2;
-
-  while (foo > bar)
-    {
-      foo -=  bar;
-      *p++ = foo;
-      bar = 1;
-    }
-}
-
-main ()
-{
-  int tab[2];
-  tab[0] = tab[1] = 0;
-  f (tab);
-  if (tab[0] != 2 || tab[1] != 1)
-    abort ();
-  exit (0);
-}