aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/20050303-1.c
blob: 005a8c50ea4d315cd8f44c2ae9d81728b238189b (plain)
1
2
3
4
5
6
7
8
9
10
11
/* APPLE LOCAL file mainline */
void crc()
{
    int  toread;
    long long nleft;
    unsigned char buf[(128 * 1024)];

    nleft = 0;
    while (toread = (nleft < (2147483647 * 2U + 1U)) ? nleft: (2147483647 * 2U + 1U) )
	;
}