aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/990801-2.c
blob: 0a575ea17aa008f237ee801b4b270a8bcc847462 (plain)
1
2
3
4
5
6
7
8
9
10
11
void f()
{
    extern char* p;
    int ch;
    while (!(ch = 0)) {
        if ((ch == 0) || (ch == 2)) {
            break;
        }
        *p = 0;
    }
}