X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.c-torture%2Fexecute%2F930622-2.c;fp=gcc%2Ftestsuite%2Fgcc.c-torture%2Fexecute%2F930622-2.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=d049b002a196a0775ad604f05d0adc310a3d4f60;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/gcc.c-torture/execute/930622-2.c b/gcc/testsuite/gcc.c-torture/execute/930622-2.c deleted file mode 100644 index d049b002..00000000 --- a/gcc/testsuite/gcc.c-torture/execute/930622-2.c +++ /dev/null @@ -1,24 +0,0 @@ -long double -ll_to_ld (long long n) -{ - return n; -} - -long long -ld_to_ll (long double n) -{ - return n; -} - -main () -{ - long long n; - - if (ll_to_ld (10LL) != 10.0) - abort (); - - if (ld_to_ll (10.0) != 10) - abort (); - - exit (0); -}