]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/991023-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 991023-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/991023-1.c b/gcc/testsuite/gcc.c-torture/execute/991023-1.c
deleted file mode 100644 (file)
index 697eb93..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-int blah;
-foo()
-{
-  int i;
-
-  for (i=0 ; i< 7 ; i++)
-    {
-      if (i == 7 - 1)
-       blah = 0xfcc;
-      else
-       blah = 0xfee;
-    }
-  return blah;
-}
-
-
-main()
-{
-  if (foo () != 0xfcc)
-    abort ();
-  exit (0);
-}