aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/unsorted/xopt.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/xopt.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/unsorted/xopt.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/xopt.c b/gcc/testsuite/gcc.c-torture/unsorted/xopt.c
deleted file mode 100644
index b1a50f86cef..00000000000
--- a/gcc/testsuite/gcc.c-torture/unsorted/xopt.c
+++ /dev/null
@@ -1,35 +0,0 @@
-proc1 (a)
- unsigned a;
-{
- return (a >> 20) & 0x010fffff;
-}
-
-proc2 (a)
- unsigned a;
-{
- return (a << 17) & 0xfffff001;
-}
-
-proc3 (a)
- unsigned a;
-{
- return (a & 0xff00000a) >> 25;
-}
-
-proc4 (a)
- unsigned a;
-{
- return (a & 0x100000ff) << 25;
-}
-
-proc5 (a)
- unsigned a;
-{
- return (unsigned char) (a >> 24);
-}
-
-proc6 (a)
- unsigned a;
-{
- return ((unsigned char) a) << 30;
-}