X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.c-torture%2Funsorted%2Fbad.c;fp=gcc%2Ftestsuite%2Fgcc.c-torture%2Funsorted%2Fbad.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=8cc84973b7259cfd1445d02729908f1fcbf7123d;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/gcc.c-torture/unsorted/bad.c b/gcc/testsuite/gcc.c-torture/unsorted/bad.c deleted file mode 100644 index 8cc84973..00000000 --- a/gcc/testsuite/gcc.c-torture/unsorted/bad.c +++ /dev/null @@ -1,26 +0,0 @@ -typedef union longlong -{ - struct {unsigned short h0, h1, h2, h3;} h; - struct {signed long low, high;} si; - struct {unsigned long low, high;} ui; - signed long long sll; - unsigned long long ull; -} long_long; - - -long long -__negdi2 (u) - long long u; -{ - long_long uu; - - uu.sll = u; - - uu.si.low = -uu.si.low; - if (uu.si.low == 0) - uu.si.high = -uu.si.high; - else - uu.si.high = ~uu.si.high; - - return uu.sll; -}