• Home
  • Raw
  • Download

Lines Matching full:sections

5 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp parallel sections'}}
6 #pragma omp parallel sections
8 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp parallel sections'}}
9 #pragma omp parallel sections foo
13 #pragma omp parallel sections in test_no_clause()
18 // expected-error@+2 {{the statement for '#pragma omp parallel sections' must be a compound stateme… in test_no_clause()
19 #pragma omp parallel sections in test_no_clause()
22 #pragma omp parallel sections in test_no_clause()
25 …foo(); // expected-error {{statement in 'omp parallel sections' directive must be enclosed into a … in test_no_clause()
37 #pragma omp parallel sections in test_branch_protected_scope()
71 // expected-warning@+1 {{extra tokens at the end of '#pragma omp parallel sections' are ignored}} in test_invalid_clause()
72 #pragma omp parallel sections foo bar in test_invalid_clause()
84 // expected-warning@+1 {{extra tokens at the end of '#pragma omp parallel sections' are ignored}} in test_non_identifiers()
85 #pragma omp parallel sections; in test_non_identifiers()
89 …xpected-error@+2 {{unexpected OpenMP clause 'linear' in directive '#pragma omp parallel sections'}} in test_non_identifiers()
90 // expected-warning@+1 {{extra tokens at the end of '#pragma omp parallel sections' are ignored}} in test_non_identifiers()
91 #pragma omp parallel sections linear(x); in test_non_identifiers()
96 // expected-warning@+1 {{extra tokens at the end of '#pragma omp parallel sections' are ignored}} in test_non_identifiers()
97 #pragma omp parallel sections private(x); in test_non_identifiers()
102 // expected-warning@+1 {{extra tokens at the end of '#pragma omp parallel sections' are ignored}} in test_non_identifiers()
103 #pragma omp parallel sections, private(x); in test_non_identifiers()
113 #pragma omp parallel sections private( in test_private()
119 #pragma omp parallel sections private(, in test_private()
124 #pragma omp parallel sections private(, ) in test_private()
129 #pragma omp parallel sections private() in test_private()
134 #pragma omp parallel sections private(int) in test_private()
139 #pragma omp parallel sections private(0) in test_private()
145 #pragma omp parallel sections private(x) in test_private()
149 #pragma omp parallel sections private(x, y) in test_private()
153 #pragma omp parallel sections private(x, y, z) in test_private()
163 #pragma omp parallel sections lastprivate( in test_lastprivate()
170 #pragma omp parallel sections lastprivate(, in test_lastprivate()
175 #pragma omp parallel sections lastprivate(, ) in test_lastprivate()
180 #pragma omp parallel sections lastprivate() in test_lastprivate()
185 #pragma omp parallel sections lastprivate(int) in test_lastprivate()
190 #pragma omp parallel sections lastprivate(0) in test_lastprivate()
196 #pragma omp parallel sections lastprivate(x) in test_lastprivate()
200 #pragma omp parallel sections lastprivate(x, y) in test_lastprivate()
204 #pragma omp parallel sections lastprivate(x, y, z) in test_lastprivate()
214 #pragma omp parallel sections firstprivate( in test_firstprivate()
221 #pragma omp parallel sections firstprivate(, in test_firstprivate()
226 #pragma omp parallel sections firstprivate(, ) in test_firstprivate()
231 #pragma omp parallel sections firstprivate() in test_firstprivate()
236 #pragma omp parallel sections firstprivate(int) in test_firstprivate()
241 #pragma omp parallel sections firstprivate(0) in test_firstprivate()
247 #pragma omp parallel sections lastprivate(x) firstprivate(x) in test_firstprivate()
251 #pragma omp parallel sections lastprivate(x, y) firstprivate(x, y) in test_firstprivate()
255 #pragma omp parallel sections lastprivate(x, y, z) firstprivate(x, y, z) in test_firstprivate()