From 536c44e5e9612dc161e3da9d9f3f30e134e8242f Mon Sep 17 00:00:00 2001 From: YamaArashi Date: Fri, 29 Apr 2016 06:03:42 -0700 Subject: delete test suite --- gcc/testsuite/gcc.c-torture/unsorted/rmsc.c | 46 ----------------------------- 1 file changed, 46 deletions(-) delete mode 100755 gcc/testsuite/gcc.c-torture/unsorted/rmsc.c (limited to '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 100755 index 5c97c6d..0000000 --- a/gcc/testsuite/gcc.c-torture/unsorted/rmsc.c +++ /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; -} -- cgit v1.2.3