]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/960909-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 960909-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/960909-1.c b/gcc/testsuite/gcc.c-torture/execute/960909-1.c
deleted file mode 100644 (file)
index de1ed93..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-int
-ffs (x)
-     int x;
-{
-  int bit, mask;
-
-  if (x == 0)
-    return 0;
-
-  for (bit = 1, mask = 1; !(x & mask); bit++, mask <<= 1)
-    ;
-
-  return bit;
-}
-
-f (x)
-     int x;
-{
-  int y;
-  y = ffs (x) - 1;
-  if (y < 0) 
-    abort ();
-}
-
-main ()
-{
-  f (1);
-  exit (0);
-}