1 // RUN: %clang_cc1 -verify -fopenmp %s -Wuninitialized
3 // RUN: %clang_cc1 -verify -fopenmp-simd %s -Wuninitialized
8 bool foobool(int argc
) {
12 struct S1
; // expected-note {{declared here}}
18 S2(S2
&s2
):a(s2
.a
) { }
26 S3(S3
&s3
):a(s3
.a
) { }
41 S5(const S5
&s5
):a(s5
.a
) { }
47 #pragma omp threadprivate(h) // expected-note {{defined as threadprivate or thread local}}
51 #pragma omp threadprivate(x) // expected-note {{defined as threadprivate or thread local}}
57 int main(int argc
, char **argv
) {
59 const int da
[5] = { 0 };
64 #pragma omp target teams shared // expected-error {{expected '(' after 'shared'}}
66 #pragma omp target teams shared ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
68 #pragma omp target teams shared () // expected-error {{expected expression}}
70 #pragma omp target teams shared (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
72 #pragma omp target teams shared (argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
74 #pragma omp target teams shared (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
76 #pragma omp target teams shared (argc)
78 #pragma omp target teams shared (S1) // expected-error {{'S1' does not refer to a value}}
80 #pragma omp target teams shared (a, b, c, d, f)
82 #pragma omp target teams shared (argv[1]) // expected-error {{expected variable name}}
84 #pragma omp target teams shared(ba)
86 #pragma omp target teams shared(ca)
88 #pragma omp target teams shared(da)
90 #pragma omp target teams shared(e, g)
92 #pragma omp target teams shared(h, B::x) // expected-error 2 {{threadprivate or thread local variable cannot be shared}}
94 #pragma omp target teams private(i), shared(i) // expected-error {{private variable cannot be shared}} expected-note {{defined as private}}
96 #pragma omp target teams firstprivate(i), shared(i) // expected-error {{firstprivate variable cannot be shared}} expected-note {{defined as firstprivate}}
98 #pragma omp target teams private(i)
100 #pragma omp target teams shared(i)
102 #pragma omp target teams shared(j)
104 #pragma omp target teams firstprivate(i)
106 #pragma omp target teams shared(i)
108 #pragma omp target teams shared(j)