]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/930921-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930921-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/930921-1.c b/gcc/testsuite/gcc.c-torture/execute/930921-1.c
deleted file mode 100644 (file)
index 12e04e3..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-f (x)
-     unsigned x;
-{
-  return (unsigned) (((unsigned long long) x * 0xAAAAAAAB) >> 32) >> 1;
-}
-
-main ()
-{
-  unsigned i;
-
-  for (i = 0; i < 10000; i++)
-    if (f (i) != i / 3)
-      abort ();
-  exit (0);
-}