X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.c-torture%2Fexecute%2Floop-9.c;fp=gcc%2Ftestsuite%2Fgcc.c-torture%2Fexecute%2Floop-9.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=523057593a3f41167bbb2e3559ddce84b26cbc0d;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/gcc.c-torture/execute/loop-9.c b/gcc/testsuite/gcc.c-torture/execute/loop-9.c deleted file mode 100644 index 52305759..00000000 --- a/gcc/testsuite/gcc.c-torture/execute/loop-9.c +++ /dev/null @@ -1,21 +0,0 @@ -/* Source: Neil Booth, from PR # 115. */ - -int false() -{ - return 0; -} - -extern void abort (void); - -int main (int argc,char *argv[]) -{ - int count = 0; - - while (false() || count < -123) - ++count; - - if (count) - abort (); - - return 0; -}