aboutsummaryrefslogtreecommitdiff
path: root/SingleSource/Regression/C/gcc-c-torture/execute/991216-4.c
blob: 4cc4c8c13e331fa5506c53deaa2fe76f1f37f7f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Test against a problem with loop reversal.  */
static void bug(int size, int tries)
{
    int i;
    int num = 0;
    while (num < size)
    {
        for (i = 1; i < tries; i++) num++;
    }
}

int main()
{
    bug(5, 10);
    exit (0);
}