diff options
author | camthesaxman <camthesaxman@users.noreply.github.com> | 2020-01-30 02:12:24 -0600 |
---|---|---|
committer | camthesaxman <camthesaxman@users.noreply.github.com> | 2020-01-30 02:12:24 -0600 |
commit | 3397016bff4dd62706f7d807a5196e79ae9c30b6 (patch) | |
tree | 98e90037403f29116f3ea6d0d8a1ba3623f4e968 /gcc_arm/testsuite/gcc.c-torture/unsorted/cc.c | |
parent | 4f87fae05b87cefd4f8fc0b2b18e639b0fad25fc (diff) |
delete test suite
Diffstat (limited to 'gcc_arm/testsuite/gcc.c-torture/unsorted/cc.c')
-rwxr-xr-x | gcc_arm/testsuite/gcc.c-torture/unsorted/cc.c | 96 |
1 files changed, 0 insertions, 96 deletions
diff --git a/gcc_arm/testsuite/gcc.c-torture/unsorted/cc.c b/gcc_arm/testsuite/gcc.c-torture/unsorted/cc.c deleted file mode 100755 index e29bec4..0000000 --- a/gcc_arm/testsuite/gcc.c-torture/unsorted/cc.c +++ /dev/null @@ -1,96 +0,0 @@ -cc8 (a, b) -{ - if (a < 0) - goto L1; - if (a == 0) - goto L2; - L1:b++; - L2:b++; - return b; -} - -cc7 (a) - long long a; -{ - if (a < 0) - return 1; - else - return 0; -} - -cc6 (float a, double p) -{ - p = a; - if (p < 0) - return p; - else - return p + 1; -} - -cc5 (p, a) - char *p; - char a; -{ - p[2] = a; - if (a) - return 0; - else - return 1; -} - - -cc4 (a, b, p) - int a, b; - int *p; -{ - a = (int short)b; - *p = a; - if ((int) a < 0) - return 0; - else - return 1; -} - - -cc1 (a, b) -{ - int x = 0; - - if ((int) a < (int) b) - { - if ((unsigned) a < (unsigned) b) - x++; - x++; - } - - return x; -} - -cc2 (a, b) -{ - int x = 0; - - if ((int) a <= (int) b) - { - if ((int) a < (int) b) - x++; - x++; - } - - return x; -} - -cc3 (a, b) -{ - int x = 0; - - a += b; - if ((unsigned) a > 0) - { - if (a == 0) - x++; - x++; - } - - return x; -} |