]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/unsorted/loop386.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / loop386.c
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/loop386.c b/gcc/testsuite/gcc.c-torture/unsorted/loop386.c
deleted file mode 100644 (file)
index 429a320..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-foo (a)
-{
-  do
-    {
-      puts ("a");
-      a -= 1;
-    }
-  while (a != 0);
-}
-
-main ()
-{
-  int p[100];
-  printf ("%d\n", foo (3));
-}