Lines Matching full:sections
7 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp parallel sections'}}
8 #pragma omp parallel sections
10 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp parallel sections'}}
11 #pragma omp parallel sections foo
15 #pragma omp parallel sections in test_no_clause()
20 // expected-error@+2 {{the statement for '#pragma omp parallel sections' must be a compound stateme… in test_no_clause()
21 #pragma omp parallel sections in test_no_clause()
24 #pragma omp parallel sections in test_no_clause()
27 …foo(); // expected-error {{statement in 'omp parallel sections' directive must be enclosed into a … in test_no_clause()
39 #pragma omp parallel sections in test_branch_protected_scope()
73 // expected-warning@+1 {{extra tokens at the end of '#pragma omp parallel sections' are ignored}} in test_invalid_clause()
74 #pragma omp parallel sections foo bar in test_invalid_clause()
86 // expected-warning@+1 {{extra tokens at the end of '#pragma omp parallel sections' are ignored}} in test_non_identifiers()
87 #pragma omp parallel sections; in test_non_identifiers()
91 …xpected-error@+2 {{unexpected OpenMP clause 'linear' in directive '#pragma omp parallel sections'}} in test_non_identifiers()
92 // expected-warning@+1 {{extra tokens at the end of '#pragma omp parallel sections' are ignored}} in test_non_identifiers()
93 #pragma omp parallel sections linear(x); in test_non_identifiers()
98 // expected-warning@+1 {{extra tokens at the end of '#pragma omp parallel sections' are ignored}} in test_non_identifiers()
99 #pragma omp parallel sections private(x); in test_non_identifiers()
104 // expected-warning@+1 {{extra tokens at the end of '#pragma omp parallel sections' are ignored}} in test_non_identifiers()
105 #pragma omp parallel sections, private(x); in test_non_identifiers()
115 #pragma omp parallel sections private( in test_private()
121 #pragma omp parallel sections private(, in test_private()
126 #pragma omp parallel sections private(, ) in test_private()
131 #pragma omp parallel sections private() in test_private()
136 #pragma omp parallel sections private(int) in test_private()
141 #pragma omp parallel sections private(0) in test_private()
147 #pragma omp parallel sections private(x) in test_private()
151 #pragma omp parallel sections private(x, y) in test_private()
155 #pragma omp parallel sections private(x, y, z) in test_private()
165 #pragma omp parallel sections lastprivate( in test_lastprivate()
172 #pragma omp parallel sections lastprivate(, in test_lastprivate()
177 #pragma omp parallel sections lastprivate(, ) in test_lastprivate()
182 #pragma omp parallel sections lastprivate() in test_lastprivate()
187 #pragma omp parallel sections lastprivate(int) in test_lastprivate()
192 #pragma omp parallel sections lastprivate(0) in test_lastprivate()
198 #pragma omp parallel sections lastprivate(x) in test_lastprivate()
202 #pragma omp parallel sections lastprivate(x, y) in test_lastprivate()
206 #pragma omp parallel sections lastprivate(x, y, z) in test_lastprivate()
216 #pragma omp parallel sections firstprivate( in test_firstprivate()
223 #pragma omp parallel sections firstprivate(, in test_firstprivate()
228 #pragma omp parallel sections firstprivate(, ) in test_firstprivate()
233 #pragma omp parallel sections firstprivate() in test_firstprivate()
238 #pragma omp parallel sections firstprivate(int) in test_firstprivate()
243 #pragma omp parallel sections firstprivate(0) in test_firstprivate()
249 #pragma omp parallel sections lastprivate(x) firstprivate(x) in test_firstprivate()
253 #pragma omp parallel sections lastprivate(x, y) firstprivate(x, y) in test_firstprivate()
257 #pragma omp parallel sections lastprivate(x, y, z) firstprivate(x, y, z) in test_firstprivate()