1 // RUN: %clang_cc1 -verify=expected,omp45 -fopenmp-version=45 -fopenmp %s -Wuninitialized
2 // RUN: %clang_cc1 -verify=expected,omp51 -fopenmp %s -Wuninitialized
4 // RUN: %clang_cc1 -verify=expected,omp45 -fopenmp-version=45 -fopenmp-simd %s -Wuninitialized
5 // RUN: %clang_cc1 -verify=expected,omp51 -fopenmp-simd %s -Wuninitialized
7 extern int omp_default_mem_alloc
;
11 bool foobool(int argc
) {
15 struct S1
; // expected-note 2 {{declared here}} expected-note 2 {{forward declaration of 'S1'}}
22 S2(S2
&s2
) : a(s2
.a
) {}
23 const S2
&operator=(const S2
&) const;
24 static float S2s
; // expected-note {{static data member is predetermined as shared}}
25 static const float S2sc
; // expected-note {{'S2sc' declared here}}
27 const float S2::S2sc
= 0;
32 S3
&operator=(const S3
&s3
); // expected-note 2 {{implicitly declared private here}}
36 S3(S3
&s3
) : a(s3
.a
) {}
38 const S3 c
; // expected-note {{'c' defined here}}
39 const S3 ca
[5]; // expected-note {{'ca' defined here}}
40 extern const int f
; // expected-note {{'f' declared here}}
43 S4(); // expected-note 3 {{implicitly declared private here}}
51 S5() : a(0) {} // expected-note {{implicitly declared private here}}
54 S5(const S5
&s5
) : a(s5
.a
) {}
59 S6() : a(0) {} // omp45-note 2 {{implicitly declared private here}}
62 S6(const S6
&s6
) : a(s6
.a
) {}
67 #pragma omp threadprivate(h) // expected-note 2 {{defined as threadprivate or thread local}}
69 template <class I
, class C
>
70 int foomain(int argc
, char **argv
) {
75 S6
s(0); // omp51-note {{'s' defined here}}
77 #pragma omp sections lastprivate // expected-error {{expected '(' after 'lastprivate'}}
82 #pragma omp sections lastprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
87 #pragma omp sections lastprivate() // expected-error {{expected expression}}
92 #pragma omp sections lastprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
97 #pragma omp sections lastprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
102 #pragma omp sections lastprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
107 #pragma omp sections lastprivate(argc)
112 #pragma omp sections lastprivate(conditional: argc,s) lastprivate(conditional: // omp51-error {{expected expression}} omp45-error 2 {{use of undeclared identifier 'conditional'}} expected-error {{expected ')'}} expected-note {{to match this '('}} omp45-error 2 {{calling a private constructor of class 'S6'}} omp51-error {{expected list item of scalar type in 'lastprivate' clause with 'conditional' modifier}}}
117 #pragma omp sections lastprivate(foo:argc) // omp51-error {{expected 'conditional' in OpenMP clause 'lastprivate'}} omp45-error {{expected ',' or ')' in 'lastprivate' clause}} omp45-error {{expected ')'}} omp45-error {{expected variable name}} omp45-note {{to match this '('}}
122 #pragma omp sections lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
127 #pragma omp sections lastprivate(a, b, k) // expected-error {{lastprivate variable with incomplete type 'S1'}}
132 #pragma omp sections lastprivate(argv[1]) // expected-error {{expected variable name}}
137 #pragma omp sections lastprivate(e, g) // expected-error 2 {{calling a private constructor of class 'S4'}}
142 #pragma omp sections lastprivate(h) // expected-error {{threadprivate or thread local variable cannot be lastprivate}}
147 #pragma omp sections linear(i) // expected-error {{unexpected OpenMP clause 'linear' in directive '#pragma omp sections'}}
154 int i
; // expected-note {{variable with automatic storage duration is predetermined as private; perhaps you forget to enclose 'omp sections' directive into a parallel or another task region?}}
155 #pragma omp sections lastprivate(i) // expected-error {{lastprivate variable must be shared}}
161 #pragma omp parallel shared(i)
162 #pragma omp parallel private(i)
163 #pragma omp sections lastprivate(j)
168 #pragma omp sections lastprivate(i)
177 #pragma omp threadprivate(x) // expected-note {{defined as threadprivate or thread local}}
183 int main(int argc
, char **argv
) {
184 const int d
= 5; // expected-note {{'d' defined here}}
185 const int da
[5] = {0}; // expected-note {{'da' defined here}}
193 #pragma omp sections lastprivate // expected-error {{expected '(' after 'lastprivate'}}
198 #pragma omp sections lastprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
203 #pragma omp sections lastprivate() // expected-error {{expected expression}}
208 #pragma omp sections lastprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
213 #pragma omp sections lastprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
218 #pragma omp sections lastprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
223 #pragma omp sections lastprivate(argc) allocate , allocate(, allocate(omp_default , allocate(omp_default_mem_alloc, allocate(omp_default_mem_alloc:, allocate(omp_default_mem_alloc: argc, allocate(omp_default_mem_alloc: argv), allocate(argv) // expected-error {{expected '(' after 'allocate'}} expected-error 2 {{expected expression}} expected-error 2 {{expected ')'}} expected-error {{use of undeclared identifier 'omp_default'}} expected-note 2 {{to match this '('}}
228 #pragma omp sections lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
233 #pragma omp sections lastprivate(a, b, c, d, f) // expected-error {{lastprivate variable with incomplete type 'S1'}} expected-error 1 {{const-qualified variable without mutable fields cannot be lastprivate}} expected-error 2 {{const-qualified variable cannot be lastprivate}}
238 #pragma omp sections lastprivate(argv[1]) // expected-error {{expected variable name}}
243 #pragma omp sections lastprivate(2 * 2) // expected-error {{expected variable name}}
248 #pragma omp sections lastprivate(ba, k)
253 #pragma omp sections lastprivate(ca) // expected-error {{const-qualified variable without mutable fields cannot be lastprivate}}
258 #pragma omp sections lastprivate(da) // expected-error {{const-qualified variable cannot be lastprivate}}
264 #pragma omp sections lastprivate(xa) // OK
269 #pragma omp sections lastprivate(S2::S2s) // expected-error {{shared variable cannot be lastprivate}}
274 #pragma omp sections lastprivate(S2::S2sc) // expected-error {{const-qualified variable cannot be lastprivate}}
279 #pragma omp sections safelen(5) // expected-error {{unexpected OpenMP clause 'safelen' in directive '#pragma omp sections'}}
284 #pragma omp sections lastprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
289 #pragma omp sections lastprivate(m) // expected-error {{'operator=' is a private member of 'S3'}}
294 #pragma omp sections lastprivate(h, B::x) // expected-error 2 {{threadprivate or thread local variable cannot be lastprivate}}
299 #pragma omp sections private(xa), lastprivate(xa) // expected-error {{private variable cannot be lastprivate}} expected-note {{defined as private}}
304 #pragma omp sections lastprivate(i)
308 #pragma omp parallel private(xa) // expected-note {{defined as private}}
309 #pragma omp sections lastprivate(xa) // expected-error {{lastprivate variable must be shared}}
313 #pragma omp parallel reduction(+ : xa) // expected-note {{defined as reduction}}
314 #pragma omp sections lastprivate(xa) // expected-error {{lastprivate variable must be shared}}
319 #pragma omp sections lastprivate(j)
324 #pragma omp sections firstprivate(m) lastprivate(m) // expected-error {{'operator=' is a private member of 'S3'}}
329 #pragma omp sections lastprivate(n) firstprivate(n) // OK
334 #pragma omp sections lastprivate(r) // OK
338 return foomain
<S4
, S5
>(argc
, argv
); // expected-note {{in instantiation of function template specialization 'foomain<S4, S5>' requested here}}