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
) {}
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
) {
71 I
e(4); // omp51-note {{'e' defined here}}
75 #pragma omp parallel sections lastprivate // expected-error {{expected '(' after 'lastprivate'}}
79 #pragma omp parallel sections lastprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
83 #pragma omp parallel sections lastprivate() // expected-error {{expected expression}}
87 #pragma omp parallel sections lastprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
91 #pragma omp parallel sections lastprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
95 #pragma omp parallel sections lastprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
99 #pragma omp parallel 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 '('}}
103 #pragma omp parallel sections lastprivate(conditional: e,argc) lastprivate(conditional: // omp51-error {{expected expression}} omp45-error 2 {{use of undeclared identifier 'conditional'}} expected-error {{expected ')'}} expected-note {{to match this '('}} omp51-error {{expected list item of scalar type in 'lastprivate' clause with 'conditional' modifier}}
107 #pragma omp parallel 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 '('}}
111 #pragma omp parallel sections lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
115 #pragma omp parallel sections lastprivate(a, b) // expected-error {{lastprivate variable with incomplete type 'S1'}}
119 #pragma omp parallel sections lastprivate(argv[1]) // expected-error {{expected variable name}}
123 #pragma omp parallel sections lastprivate(e, g) // expected-error 2 {{calling a private constructor of class 'S4'}}
127 #pragma omp parallel sections lastprivate(h) // expected-error {{threadprivate or thread local variable cannot be lastprivate}}
131 #pragma omp parallel sections linear(i) // expected-error {{unexpected OpenMP clause 'linear' in directive '#pragma omp parallel sections'}}
139 #pragma omp parallel sections lastprivate(i)
145 #pragma omp parallel shared(i)
146 #pragma omp parallel private(i)
147 #pragma omp parallel sections lastprivate(j)
151 #pragma omp parallel sections lastprivate(i)
160 #pragma omp threadprivate(x) // expected-note {{defined as threadprivate or thread local}}
166 int main(int argc
, char **argv
) {
167 const int d
= 5; // expected-note {{'d' defined here}}
168 const int da
[5] = {0}; // expected-note {{'da' defined here}}
175 #pragma omp parallel sections lastprivate // expected-error {{expected '(' after 'lastprivate'}}
179 #pragma omp parallel sections lastprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
183 #pragma omp parallel sections lastprivate() // expected-error {{expected expression}}
187 #pragma omp parallel sections lastprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
191 #pragma omp parallel sections lastprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
195 #pragma omp parallel sections lastprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
199 #pragma omp parallel sections lastprivate(argc)
203 #pragma omp parallel sections lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
207 #pragma omp parallel 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}}
211 #pragma omp parallel sections lastprivate(argv[1]) // expected-error {{expected variable name}}
215 #pragma omp parallel sections lastprivate(2 * 2) // expected-error {{expected variable name}}
219 #pragma omp parallel sections lastprivate(ba)
223 #pragma omp parallel sections lastprivate(ca) // expected-error {{const-qualified variable without mutable fields cannot be lastprivate}}
227 #pragma omp parallel sections lastprivate(da) // expected-error {{const-qualified variable cannot be lastprivate}}
232 #pragma omp parallel sections lastprivate(xa) // OK
236 #pragma omp parallel sections lastprivate(S2::S2s) // expected-error {{shared variable cannot be lastprivate}}
240 #pragma omp parallel sections lastprivate(S2::S2sc) // expected-error {{const-qualified variable cannot be lastprivate}}
244 #pragma omp parallel sections safelen(5) // expected-error {{unexpected OpenMP clause 'safelen' in directive '#pragma omp parallel sections'}}
248 #pragma omp parallel sections lastprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
252 #pragma omp parallel sections lastprivate(m) // expected-error {{'operator=' is a private member of 'S3'}}
256 #pragma omp parallel sections lastprivate(h, B::x) // expected-error 2 {{threadprivate or thread local variable cannot be lastprivate}}
260 #pragma omp parallel sections private(xa), lastprivate(xa) // expected-error {{private variable cannot be lastprivate}} expected-note {{defined as private}}
264 #pragma omp parallel sections lastprivate(i)
268 #pragma omp parallel private(xa)
269 #pragma omp parallel sections lastprivate(xa)
273 #pragma omp parallel reduction(+ : xa)
274 #pragma omp parallel sections lastprivate(xa)
278 #pragma omp parallel sections lastprivate(j)
282 #pragma omp parallel sections firstprivate(m) lastprivate(m) // expected-error {{'operator=' is a private member of 'S3'}}
286 #pragma omp parallel sections lastprivate(n) firstprivate(n) // OK
291 #pragma omp parallel sections lastprivate(r) // OK
295 return foomain
<S4
, S5
>(argc
, argv
); // expected-note {{in instantiation of function template specialization 'foomain<S4, S5>' requested here}}