aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/libgomp/testsuite/libgomp.c/omp-parallel-for.c
blob: c6631a0a7cb340c240b6bc166d1653b528e97e2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
extern void abort (void);

main()
{
  int i, a;

  a = 30;

#pragma omp parallel for firstprivate (a) lastprivate (a) \
	num_threads (2) schedule(static)
  for (i = 0; i < 10; i++)
    a = a + i;

  /* The thread that owns the last iteration will have computed
     30 + 5 + 6 + 7 + 8 + 9 = 65.  */
  if (a != 65)
    abort ();

  return 0;
}