diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/c.c')
-rwxr-xr-x | gcc/testsuite/gcc.c-torture/unsorted/c.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/c.c b/gcc/testsuite/gcc.c-torture/unsorted/c.c deleted file mode 100755 index 384ee3e..0000000 --- a/gcc/testsuite/gcc.c-torture/unsorted/c.c +++ /dev/null @@ -1,17 +0,0 @@ -foo (a, b) - long long a, b; -{ - if (a & ~b) - return 1; - else - return 0; -} - -bar (a, b) - long long a, b; -{ - if (a & ~b & ((long long) 87612378)) - return 1; - else - return 0; -} |