aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.2.1-5666.3/libgomp/testsuite/libgomp.c++/loop-5.C
blob: c427efa85c69a2a03ff9ef07847f429f1a0e1462 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
extern "C" void abort ();

int check;
int f1() { check |= 1; return 1; }
int f2() { check |= 2; return 11; }
int f3() { check |= 4; return 2; }

int a[12];

int main()
{
  #pragma omp for
  for (int i = f1(); i <= f2(); i += f3())
    a[i] = 1;

  for (int i = 0; i < 12; ++i)
    if (a[i] != (i & 1))
      abort ();
}