]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/unsorted/rmsc.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / rmsc.c
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/rmsc.c b/gcc/testsuite/gcc.c-torture/unsorted/rmsc.c
deleted file mode 100644 (file)
index 5c97c6d..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-
-cc1 (x, y)
-     int x, y;
-{
-  int z;
-  z = x - y;
-  if (x >= y)
-    return z + 1;
-  else
-    return z + 0;
-}
-
-cc2 (x, y)
-     int x, y;
-{
-  int z;
-
-  z = x - y;
-  if (z >= 0)
-    return z + 1;
-  else
-    return z + 0;
-}
-
-cc3 (x, y)
-     unsigned x, y;
-{
-  unsigned z;
-  z = x - y;
-  if (x >= y)
-    return z + 1;
-  else
-    return z + 0;
-}
-
-cc4 (x, y)
-     unsigned x, y;
-{
-  unsigned z;
-
-  z = x - y;
-  if (z >= 0)
-    return z + 1;
-  else
-    return z + 0;
-}