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/compile/930621-1.c | |
parent | 4f87fae05b87cefd4f8fc0b2b18e639b0fad25fc (diff) |
delete test suite
Diffstat (limited to 'gcc_arm/testsuite/gcc.c-torture/compile/930621-1.c')
-rwxr-xr-x | gcc_arm/testsuite/gcc.c-torture/compile/930621-1.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/gcc_arm/testsuite/gcc.c-torture/compile/930621-1.c b/gcc_arm/testsuite/gcc.c-torture/compile/930621-1.c deleted file mode 100755 index 3679cf1..0000000 --- a/gcc_arm/testsuite/gcc.c-torture/compile/930621-1.c +++ /dev/null @@ -1,30 +0,0 @@ -int bytestart[5000 + 1]; -unsigned char modtext[400 + 1]; -unsigned char bytemem[2][45000L + 1]; - -long -modlookup (int l) -{ - signed char c; - long j; - long k; - signed char w; - long p; - while (p != 0) - { - while ((k < bytestart[p + 2]) && (j <= l) && (modtext[j] == bytemem[w][k])) - { - k = k + 1; - j = j + 1; - } - if (k == bytestart[p + 2]) - if (j > l) - c = 1; - else c = 4; - else if (j > l) - c = 3; - else if (modtext[j] < bytemem[w][k]) - c = 0; - else c = 2; - } -} |