diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/dshift.c')
-rwxr-xr-x | gcc/testsuite/gcc.c-torture/unsorted/dshift.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/dshift.c b/gcc/testsuite/gcc.c-torture/unsorted/dshift.c deleted file mode 100755 index 94750cc..0000000 --- a/gcc/testsuite/gcc.c-torture/unsorted/dshift.c +++ /dev/null @@ -1,10 +0,0 @@ -foo (b, c) - unsigned b, c; -{ - return (b << 12) | (c >> 20); -} - -main () -{ - printf ("0x%x\n", foo (0x11223344, 0xaabbccdd)); -} |