]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.dg/20030323-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.dg / 20030323-1.c
diff --git a/gcc/testsuite/gcc.dg/20030323-1.c b/gcc/testsuite/gcc.dg/20030323-1.c
deleted file mode 100644 (file)
index 8a563ec..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-/* { dg-do run } */
-
-/* PR c/8224 */
-/* Contributed by Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> */
-
-extern void abort (void);
-
-unsigned f (int x)
-{
-  return (unsigned) (x / 2) / 2;
-}
-
-unsigned f1 (int x)
-{
-  unsigned xx = x / 2;
-  return xx / 2;
-}
-
-int main ()
-{
-  if (f1 (-5) != f (-5))
-    abort ();
-  return 0;
-}