view libgomp/testsuite/libgomp.c++/loop-4.C @ 59:5b5b9ea5b220

fix
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 15 Feb 2010 17:22:24 +0900
parents a06113de4d67
children 84e7813d76e9
line wrap: on
line source

extern "C" 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;
}