X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.c-torture%2Funsorted%2Fxopt.c;fp=gcc%2Ftestsuite%2Fgcc.c-torture%2Funsorted%2Fxopt.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=b1a50f86cef2c0092649dab03ab5ea865fb3125f;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git 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 b1a50f86..00000000 --- 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; -}