OSDN Git Service

* config/xtensa/xtensa.c (xtensa_output_literal): Don't use #if.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / gomp / sections-3.C
1
2 // { dg-do compile }
3
4 extern void bar (void);
5
6 int main (void)
7 {
8   #pragma omp parallel sections nowait /* { dg-error "'nowait'" } */
9     {
10     #pragma omp section
11         { bar(); }
12     #pragma omp section
13         { bar(); }
14     }
15 }