X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.c-torture%2Fexecute%2F20001108-1.c;fp=gcc%2Ftestsuite%2Fgcc.c-torture%2Fexecute%2F20001108-1.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=a2a325534016b8a6c87747773004e59cde2557a6;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/gcc.c-torture/execute/20001108-1.c b/gcc/testsuite/gcc.c-torture/execute/20001108-1.c deleted file mode 100644 index a2a32553..00000000 --- a/gcc/testsuite/gcc.c-torture/execute/20001108-1.c +++ /dev/null @@ -1,25 +0,0 @@ -long long -signed_poly (long long sum, long x) -{ - sum += (long long) (long) sum * (long long) x; - return sum; -} - -unsigned long long -unsigned_poly (unsigned long long sum, unsigned long x) -{ - sum += (unsigned long long) (unsigned long) sum * (unsigned long long) x; - return sum; -} - -int -main (void) -{ - if (signed_poly (2LL, -3) != -4LL) - abort (); - - if (unsigned_poly (2ULL, 3) != 8ULL) - abort (); - - exit (0); -}