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 distribute shared // expected-error {{expected '(' after 'shared'}}
65 for (int j
=0; j
<100; j
++) foo();
66 #pragma omp target teams distribute shared ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
67 for (int j
=0; j
<100; j
++) foo();
68 #pragma omp target teams distribute shared () // expected-error {{expected expression}}
69 for (int j
=0; j
<100; j
++) foo();
70 #pragma omp target teams distribute shared (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
71 for (int j
=0; j
<100; j
++) foo();
72 #pragma omp target teams distribute shared (argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
73 for (int j
=0; j
<100; j
++) foo();
74 #pragma omp target teams distribute shared (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
75 for (int j
=0; j
<100; j
++) foo();
76 #pragma omp target teams distribute shared (argc)
77 for (int j
=0; j
<100; j
++) foo();
78 #pragma omp target teams distribute shared (S1) // expected-error {{'S1' does not refer to a value}}
79 for (int j
=0; j
<100; j
++) foo();
80 #pragma omp target teams distribute shared (a, b, c, d, f)
81 for (int j
=0; j
<100; j
++) foo();
82 #pragma omp target teams distribute shared (argv[1]) // expected-error {{expected variable name}}
83 for (int j
=0; j
<100; j
++) foo();
84 #pragma omp target teams distribute shared(ba)
85 for (int j
=0; j
<100; j
++) foo();
86 #pragma omp target teams distribute shared(ca)
87 for (int j
=0; j
<100; j
++) foo();
88 #pragma omp target teams distribute shared(da)
89 for (int j
=0; j
<100; j
++) foo();
90 #pragma omp target teams distribute shared(e, g)
91 for (int j
=0; j
<100; j
++) foo();
92 #pragma omp target teams distribute shared(h, B::x) // expected-error 2 {{threadprivate or thread local variable cannot be shared}}
93 for (int j
=0; j
<100; j
++) foo();
94 #pragma omp target teams distribute private(i), shared(i) // expected-error {{private variable cannot be shared}} expected-note {{defined as private}}
95 for (int j
=0; j
<100; j
++) foo();
96 #pragma omp target teams distribute firstprivate(i), shared(i) // expected-error {{firstprivate variable cannot be shared}} expected-note {{defined as firstprivate}}
97 for (int j
=0; j
<100; j
++) foo();
98 #pragma omp target teams distribute private(i)
99 for (int j
=0; j
<100; j
++) foo();
100 #pragma omp target teams distribute shared(i)
101 for (int j
=0; j
<100; j
++) foo();
102 #pragma omp target teams distribute shared(j)
103 for (int j
=0; j
<100; j
++) foo();
104 #pragma omp target teams distribute firstprivate(i)
105 for (int j
=0; j
<100; j
++) foo();
106 #pragma omp target teams distribute shared(i)
107 for (int j
=0; j
<100; j
++) foo();
108 #pragma omp target teams distribute shared(j)
109 for (int j
=0; j
<100; j
++) foo();