aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/unsorted/dshift.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/dshift.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/unsorted/dshift.c10
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 100644
index 94750cc3cbc..00000000000
--- 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));
-}