summaryrefslogtreecommitdiff
path: root/support/regression/tests/gcc-torture-execute-991216-4.c
blob: 009ac6b0dfc32e4b18a1f05f0efacdb16c231e60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
   991216-4.c from the execute part of the gcc torture tests.
 */

#include <testfwk.h>

#ifdef __SDCC
#pragma std_c99
#endif

/* 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++;
    }
}

void
testTortureExecute (void)
{
    bug(5, 10);
    return;
}