5259c81310
PR c++/34513 * parser.c (cp_parser_omp_parallel): For non-combined parallel call cp_parser_statement rather than cp_parser_already_scoped_statement. * testsuite/libgomp.c/pr34513.c: New test. * testsuite/libgomp.c++/pr34513.C: New test. From-SVN: r131059
34 lines
410 B
C
34 lines
410 B
C
/* PR c++/34513 */
|
|
/* { dg-do run } */
|
|
|
|
#include <omp.h>
|
|
|
|
extern void abort ();
|
|
|
|
static int errors = 0;
|
|
static int thrs = 4;
|
|
|
|
int
|
|
main ()
|
|
{
|
|
omp_set_dynamic (0);
|
|
|
|
#pragma omp parallel num_threads (thrs)
|
|
{
|
|
static int shrd = 0;
|
|
|
|
#pragma omp atomic
|
|
shrd += 1;
|
|
|
|
#pragma omp barrier
|
|
|
|
if (shrd != thrs)
|
|
#pragma omp atomic
|
|
errors += 1;
|
|
}
|
|
|
|
if (errors)
|
|
abort ();
|
|
return 0;
|
|
}
|