X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.c-torture%2Fexecute%2Floop-3.c;fp=gcc%2Ftestsuite%2Fgcc.c-torture%2Fexecute%2Floop-3.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=e314a01b1f181a8912e122917de68d9f3690f231;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/gcc.c-torture/execute/loop-3.c b/gcc/testsuite/gcc.c-torture/execute/loop-3.c deleted file mode 100644 index e314a01b..00000000 --- a/gcc/testsuite/gcc.c-torture/execute/loop-3.c +++ /dev/null @@ -1,27 +0,0 @@ -#include - -int n = 0; - -g (i) -{ - n++; -} - -f (m) -{ - int i; - i = m; - do - { - g (i * INT_MAX / 2); - } - while (--i > 0); -} - -main () -{ - f (4); - if (n != 4) - abort (); - exit (0); -}