1*d64ba896SFazlay Rabbi // RUN: %clang_cc1 -verify=expected,omp45 -fopenmp -fopenmp-version=45 -ferror-limit 150 -o - %s -Wuninitialized
2*d64ba896SFazlay Rabbi // RUN: %clang_cc1 -verify=expected,omp45 -fopenmp -fopenmp-version=45 -std=c++98 -ferror-limit 150 -o - %s -Wuninitialized
3*d64ba896SFazlay Rabbi // RUN: %clang_cc1 -verify=expected,omp45 -fopenmp -fopenmp-version=45 -std=c++11 -ferror-limit 150 -o - %s -Wuninitialized
4*d64ba896SFazlay Rabbi // RUN: %clang_cc1 -verify=expected,omp50 -fopenmp -ferror-limit 150 -o - %s -Wuninitialized
5*d64ba896SFazlay Rabbi // RUN: %clang_cc1 -verify=expected,omp50 -fopenmp -std=c++98 -ferror-limit 150 -o - %s -Wuninitialized
6*d64ba896SFazlay Rabbi // RUN: %clang_cc1 -verify=expected,omp50 -fopenmp -std=c++11 -ferror-limit 150 -o - %s -Wuninitialized
7*d64ba896SFazlay Rabbi
8*d64ba896SFazlay Rabbi // RUN: %clang_cc1 -verify=expected,omp45 -fopenmp-simd -fopenmp-version=45 -ferror-limit 150 -o - %s -Wuninitialized
9*d64ba896SFazlay Rabbi // RUN: %clang_cc1 -verify=expected,omp45 -fopenmp-simd -fopenmp-version=45 -std=c++98 -ferror-limit 150 -o - %s -Wuninitialized
10*d64ba896SFazlay Rabbi // RUN: %clang_cc1 -verify=expected,omp45 -fopenmp-simd -fopenmp-version=45 -std=c++11 -ferror-limit 150 -o - %s -Wuninitialized
11*d64ba896SFazlay Rabbi // RUN: %clang_cc1 -verify=expected,omp50 -fopenmp-simd -ferror-limit 150 -o - %s -Wuninitialized
12*d64ba896SFazlay Rabbi // RUN: %clang_cc1 -verify=expected,omp50 -fopenmp-simd -std=c++98 -ferror-limit 150 -o - %s -Wuninitialized
13*d64ba896SFazlay Rabbi // RUN: %clang_cc1 -verify=expected,omp50 -fopenmp-simd -std=c++11 -ferror-limit 150 -o - %s -Wuninitialized
14*d64ba896SFazlay Rabbi
15*d64ba896SFazlay Rabbi typedef void **omp_allocator_handle_t;
16*d64ba896SFazlay Rabbi extern const omp_allocator_handle_t omp_null_allocator;
17*d64ba896SFazlay Rabbi extern const omp_allocator_handle_t omp_default_mem_alloc;
18*d64ba896SFazlay Rabbi extern const omp_allocator_handle_t omp_large_cap_mem_alloc;
19*d64ba896SFazlay Rabbi extern const omp_allocator_handle_t omp_const_mem_alloc;
20*d64ba896SFazlay Rabbi extern const omp_allocator_handle_t omp_high_bw_mem_alloc;
21*d64ba896SFazlay Rabbi extern const omp_allocator_handle_t omp_low_lat_mem_alloc;
22*d64ba896SFazlay Rabbi extern const omp_allocator_handle_t omp_cgroup_mem_alloc;
23*d64ba896SFazlay Rabbi extern const omp_allocator_handle_t omp_pteam_mem_alloc;
24*d64ba896SFazlay Rabbi extern const omp_allocator_handle_t omp_thread_mem_alloc;
25*d64ba896SFazlay Rabbi
xxx(int argc)26*d64ba896SFazlay Rabbi void xxx(int argc) {
27*d64ba896SFazlay Rabbi int fp; // expected-note {{initialize the variable 'fp' to silence this warning}}
28*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+:fp) // expected-warning {{variable 'fp' is uninitialized when used here}}
29*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
30*d64ba896SFazlay Rabbi ;
31*d64ba896SFazlay Rabbi }
32*d64ba896SFazlay Rabbi
foo()33*d64ba896SFazlay Rabbi void foo() {
34*d64ba896SFazlay Rabbi }
35*d64ba896SFazlay Rabbi
foobool(int argc)36*d64ba896SFazlay Rabbi bool foobool(int argc) {
37*d64ba896SFazlay Rabbi return argc;
38*d64ba896SFazlay Rabbi }
39*d64ba896SFazlay Rabbi
foobar(int & ref)40*d64ba896SFazlay Rabbi void foobar(int &ref) {
41*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+:ref)
42*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
43*d64ba896SFazlay Rabbi foo();
44*d64ba896SFazlay Rabbi }
45*d64ba896SFazlay Rabbi
46*d64ba896SFazlay Rabbi struct S1; // expected-note {{declared here}} expected-note 4 {{forward declaration of 'S1'}}
47*d64ba896SFazlay Rabbi extern S1 a;
48*d64ba896SFazlay Rabbi class S2 {
49*d64ba896SFazlay Rabbi mutable int a;
operator +(const S2 & arg)50*d64ba896SFazlay Rabbi S2 &operator+(const S2 &arg) { return (*this); } // expected-note 3 {{implicitly declared private here}}
51*d64ba896SFazlay Rabbi
52*d64ba896SFazlay Rabbi public:
S2()53*d64ba896SFazlay Rabbi S2() : a(0) {}
S2(S2 & s2)54*d64ba896SFazlay Rabbi S2(S2 &s2) : a(s2.a) {}
55*d64ba896SFazlay Rabbi static float S2s; // expected-note 2 {{static data member is predetermined as shared}}
56*d64ba896SFazlay Rabbi static const float S2sc; // expected-note 2 {{'S2sc' declared here}}
57*d64ba896SFazlay Rabbi };
58*d64ba896SFazlay Rabbi const float S2::S2sc = 0;
59*d64ba896SFazlay Rabbi S2 b; // expected-note 3 {{'b' defined here}}
60*d64ba896SFazlay Rabbi const S2 ba[5]; // expected-note 2 {{'ba' defined here}}
61*d64ba896SFazlay Rabbi class S3 {
62*d64ba896SFazlay Rabbi int a;
63*d64ba896SFazlay Rabbi
64*d64ba896SFazlay Rabbi public:
65*d64ba896SFazlay Rabbi int b;
S3()66*d64ba896SFazlay Rabbi S3() : a(0) {}
S3(const S3 & s3)67*d64ba896SFazlay Rabbi S3(const S3 &s3) : a(s3.a) {}
operator +(const S3 & arg1)68*d64ba896SFazlay Rabbi S3 operator+(const S3 &arg1) { return arg1; }
69*d64ba896SFazlay Rabbi };
operator +(const S3 & arg1,const S3 & arg2)70*d64ba896SFazlay Rabbi int operator+(const S3 &arg1, const S3 &arg2) { return 5; }
71*d64ba896SFazlay Rabbi S3 c; // expected-note 3 {{'c' defined here}}
72*d64ba896SFazlay Rabbi const S3 ca[5]; // expected-note 2 {{'ca' defined here}}
73*d64ba896SFazlay Rabbi extern const int f; // expected-note 4 {{'f' declared here}}
74*d64ba896SFazlay Rabbi class S4 {
75*d64ba896SFazlay Rabbi int a;
76*d64ba896SFazlay Rabbi S4(); // expected-note {{implicitly declared private here}}
77*d64ba896SFazlay Rabbi S4(const S4 &s4);
operator +(const S4 & arg)78*d64ba896SFazlay Rabbi S4 &operator+(const S4 &arg) { return (*this); }
79*d64ba896SFazlay Rabbi
80*d64ba896SFazlay Rabbi public:
S4(int v)81*d64ba896SFazlay Rabbi S4(int v) : a(v) {}
82*d64ba896SFazlay Rabbi };
operator &=(S4 & arg1,S4 & arg2)83*d64ba896SFazlay Rabbi S4 &operator&=(S4 &arg1, S4 &arg2) { return arg1; }
84*d64ba896SFazlay Rabbi class S5 {
85*d64ba896SFazlay Rabbi int a:32;
S5()86*d64ba896SFazlay Rabbi S5() : a(0) {} // expected-note {{implicitly declared private here}}
S5(const S5 & s5)87*d64ba896SFazlay Rabbi S5(const S5 &s5) : a(s5.a) {}
88*d64ba896SFazlay Rabbi S5 &operator+(const S5 &arg);
89*d64ba896SFazlay Rabbi
90*d64ba896SFazlay Rabbi public:
S5(int v)91*d64ba896SFazlay Rabbi S5(int v) : a(v) {}
92*d64ba896SFazlay Rabbi };
93*d64ba896SFazlay Rabbi class S6 { // expected-note 3 {{candidate function (the implicit copy assignment operator) not viable: no known conversion from 'int' to 'const S6' for 1st argument}}
94*d64ba896SFazlay Rabbi #if __cplusplus >= 201103L // C++11 or later
95*d64ba896SFazlay Rabbi // expected-note@-2 3 {{candidate function (the implicit move assignment operator) not viable}}
96*d64ba896SFazlay Rabbi #endif
97*d64ba896SFazlay Rabbi int a;
98*d64ba896SFazlay Rabbi
99*d64ba896SFazlay Rabbi public:
S6()100*d64ba896SFazlay Rabbi S6() : a(6) {}
operator int()101*d64ba896SFazlay Rabbi operator int() { return 6; }
102*d64ba896SFazlay Rabbi } o;
103*d64ba896SFazlay Rabbi
104*d64ba896SFazlay Rabbi struct S7 {
105*d64ba896SFazlay Rabbi int a: 32;
S7S7106*d64ba896SFazlay Rabbi S7() {
107*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+:a) // expected-error {{expected addressable reduction item for the task-based directives}}
108*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
109*d64ba896SFazlay Rabbi ++a;
110*d64ba896SFazlay Rabbi }
111*d64ba896SFazlay Rabbi };
112*d64ba896SFazlay Rabbi
113*d64ba896SFazlay Rabbi S3 h, k;
114*d64ba896SFazlay Rabbi #pragma omp threadprivate(h) // expected-note 2 {{defined as threadprivate or thread local}}
115*d64ba896SFazlay Rabbi
116*d64ba896SFazlay Rabbi template <class T> // expected-note {{declared here}}
tmain(T argc)117*d64ba896SFazlay Rabbi T tmain(T argc) {
118*d64ba896SFazlay Rabbi const T d = T(); // expected-note 4 {{'d' defined here}}
119*d64ba896SFazlay Rabbi const T da[5] = {T()}; // expected-note 2 {{'da' defined here}}
120*d64ba896SFazlay Rabbi T qa[5] = {T()};
121*d64ba896SFazlay Rabbi T i, z;
122*d64ba896SFazlay Rabbi T &j = i; // expected-note 4 {{'j' defined here}}
123*d64ba896SFazlay Rabbi S3 &p = k; // expected-note 2 {{'p' defined here}}
124*d64ba896SFazlay Rabbi const T &r = da[(int)i]; // expected-note 2 {{'r' defined here}}
125*d64ba896SFazlay Rabbi T &q = qa[(int)i]; // expected-note 2 {{'q' defined here}}
126*d64ba896SFazlay Rabbi T fl;
127*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction // expected-error {{expected '(' after 'reduction'}}
128*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
129*d64ba896SFazlay Rabbi foo();
130*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extra tokens at the end of '#pragma omp parallel masked taskloop' are ignored}}
131*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
132*d64ba896SFazlay Rabbi foo();
133*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
134*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
135*d64ba896SFazlay Rabbi foo();
136*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
137*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
138*d64ba896SFazlay Rabbi foo();
139*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction() // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
140*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
141*d64ba896SFazlay Rabbi foo();
142*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(*) // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}}
143*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
144*d64ba896SFazlay Rabbi foo();
145*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
146*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
147*d64ba896SFazlay Rabbi foo();
148*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{invalid operands to binary expression ('float' and 'float')}}
149*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
150*d64ba896SFazlay Rabbi foo();
151*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(| : argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{invalid operands to binary expression ('float' and 'float')}}
152*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
153*d64ba896SFazlay Rabbi foo();
154*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(|| : argc ? i : argc) // expected-error 2 {{expected variable name, array element or array section}}
155*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
156*d64ba896SFazlay Rabbi foo();
157*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(foo : argc) //expected-error {{incorrect reduction identifier, expected one of '+', '-', '*', '&', '|', '^', '&&', '||', 'min' or 'max' or declare reduction for type 'float'}} expected-error {{incorrect reduction identifier, expected one of '+', '-', '*', '&', '|', '^', '&&', '||', 'min' or 'max' or declare reduction for type 'int'}}
158*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
159*d64ba896SFazlay Rabbi foo();
160*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(&& : 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 '('}}
161*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
162*d64ba896SFazlay Rabbi foo();
163*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(^ : T) // expected-error {{'T' does not refer to a value}}
164*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
165*d64ba896SFazlay Rabbi foo();
166*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+ : z, a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'}} expected-error 3 {{const-qualified variable cannot be reduction}} expected-error 2 {{'operator+' is a private member of 'S2'}}
167*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
168*d64ba896SFazlay Rabbi foo();
169*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'}} expected-error 4 {{arguments of OpenMP clause 'reduction' for 'min' or 'max' must be of arithmetic type}} expected-error 3 {{const-qualified variable cannot be reduction}}
170*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
171*d64ba896SFazlay Rabbi foo();
172*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(max : h.b) // expected-error {{expected variable name, array element or array section}}
173*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
174*d64ba896SFazlay Rabbi foo();
175*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+ : ba) // expected-error {{const-qualified variable cannot be reduction}}
176*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
177*d64ba896SFazlay Rabbi foo();
178*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(* : ca) // expected-error {{const-qualified variable cannot be reduction}}
179*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
180*d64ba896SFazlay Rabbi foo();
181*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(- : da) // expected-error {{const-qualified variable cannot be reduction}} expected-error {{const-qualified variable cannot be reduction}}
182*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
183*d64ba896SFazlay Rabbi foo();
184*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(^ : fl) // expected-error {{invalid operands to binary expression ('float' and 'float')}}
185*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
186*d64ba896SFazlay Rabbi foo();
187*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
188*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
189*d64ba896SFazlay Rabbi foo();
190*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cannot be reduction}}
191*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
192*d64ba896SFazlay Rabbi foo();
193*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+ : h, k) // expected-error {{threadprivate or thread local variable cannot be reduction}}
194*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
195*d64ba896SFazlay Rabbi foo();
196*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+ : o) // expected-error 2 {{no viable overloaded '='}}
197*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
198*d64ba896SFazlay Rabbi foo();
199*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop private(i), reduction(+ : j), reduction(+ : q) // expected-error 4 {{argument of OpenMP clause 'reduction' must reference the same object in all threads}}
200*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
201*d64ba896SFazlay Rabbi foo();
202*d64ba896SFazlay Rabbi #pragma omp parallel private(k)
203*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenMP clause 'reduction' must reference the same object in all threads}}
204*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
205*d64ba896SFazlay Rabbi foo();
206*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+ : p), reduction(+ : p) // expected-error 2 {{variable can appear only once in OpenMP 'reduction' clause}} expected-note 2 {{previously referenced here}}
207*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
208*d64ba896SFazlay Rabbi foo();
209*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+ : r) // expected-error 2 {{const-qualified variable cannot be reduction}}
210*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
211*d64ba896SFazlay Rabbi foo();
212*d64ba896SFazlay Rabbi #pragma omp parallel shared(i)
213*d64ba896SFazlay Rabbi #pragma omp parallel reduction(min : i)
214*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(max : j) // expected-error 2 {{argument of OpenMP clause 'reduction' must reference the same object in all threads}}
215*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
216*d64ba896SFazlay Rabbi foo();
217*d64ba896SFazlay Rabbi #pragma omp parallel private(fl)
218*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+ : fl) allocate(omp_thread_mem_alloc: fl) // expected-warning 2 {{allocator with the 'thread' trait access has unspecified behavior on 'parallel masked taskloop' directive}}
219*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
220*d64ba896SFazlay Rabbi foo();
221*d64ba896SFazlay Rabbi #pragma omp parallel reduction(* : fl)
222*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+ : fl)
223*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
224*d64ba896SFazlay Rabbi foo();
225*d64ba896SFazlay Rabbi
226*d64ba896SFazlay Rabbi return T();
227*d64ba896SFazlay Rabbi }
228*d64ba896SFazlay Rabbi
229*d64ba896SFazlay Rabbi namespace A {
230*d64ba896SFazlay Rabbi double x;
231*d64ba896SFazlay Rabbi #pragma omp threadprivate(x) // expected-note {{defined as threadprivate or thread local}}
232*d64ba896SFazlay Rabbi }
233*d64ba896SFazlay Rabbi namespace B {
234*d64ba896SFazlay Rabbi using A::x;
235*d64ba896SFazlay Rabbi }
236*d64ba896SFazlay Rabbi
main(int argc,char ** argv)237*d64ba896SFazlay Rabbi int main(int argc, char **argv) {
238*d64ba896SFazlay Rabbi const int d = 5; // expected-note 2 {{'d' defined here}}
239*d64ba896SFazlay Rabbi const int da[5] = {0}; // expected-note {{'da' defined here}}
240*d64ba896SFazlay Rabbi int qa[5] = {0};
241*d64ba896SFazlay Rabbi S4 e(4);
242*d64ba896SFazlay Rabbi S5 g(5);
243*d64ba896SFazlay Rabbi int i, z;
244*d64ba896SFazlay Rabbi int &j = i; // expected-note 2 {{'j' defined here}}
245*d64ba896SFazlay Rabbi S3 &p = k; // expected-note 2 {{'p' defined here}}
246*d64ba896SFazlay Rabbi const int &r = da[i]; // expected-note {{'r' defined here}}
247*d64ba896SFazlay Rabbi int &q = qa[i]; // expected-note {{'q' defined here}}
248*d64ba896SFazlay Rabbi float fl;
249*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction // expected-error {{expected '(' after 'reduction'}}
250*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
251*d64ba896SFazlay Rabbi foo();
252*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extra tokens at the end of '#pragma omp parallel masked taskloop' are ignored}}
253*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
254*d64ba896SFazlay Rabbi foo();
255*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
256*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
257*d64ba896SFazlay Rabbi foo();
258*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
259*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
260*d64ba896SFazlay Rabbi foo();
261*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction() // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
262*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
263*d64ba896SFazlay Rabbi foo();
264*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(*) // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}}
265*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
266*d64ba896SFazlay Rabbi foo();
267*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}}
268*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
269*d64ba896SFazlay Rabbi foo();
270*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(foo : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{incorrect reduction identifier, expected one of '+', '-', '*', '&', '|', '^', '&&', '||', 'min' or 'max'}}
271*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
272*d64ba896SFazlay Rabbi foo();
273*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(| : argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
274*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
275*d64ba896SFazlay Rabbi foo();
276*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(|| : argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name, array element or array section}}
277*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
278*d64ba896SFazlay Rabbi foo();
279*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(~ : argc) // expected-error {{expected unqualified-id}}
280*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
281*d64ba896SFazlay Rabbi foo();
282*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(&& : argc, z)
283*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
284*d64ba896SFazlay Rabbi foo();
285*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(^ : S1) // expected-error {{'S1' does not refer to a value}}
286*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
287*d64ba896SFazlay Rabbi foo();
288*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+ : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'}} expected-error 2 {{const-qualified variable cannot be reduction}} expected-error {{'operator+' is a private member of 'S2'}}
289*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
290*d64ba896SFazlay Rabbi foo();
291*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'}} expected-error 2 {{arguments of OpenMP clause 'reduction' for 'min' or 'max' must be of arithmetic type}} expected-error 2 {{const-qualified variable cannot be reduction}}
292*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
293*d64ba896SFazlay Rabbi foo();
294*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(max : h.b) // expected-error {{expected variable name, array element or array section}}
295*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
296*d64ba896SFazlay Rabbi foo();
297*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+ : ba) // expected-error {{const-qualified variable cannot be reduction}}
298*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
299*d64ba896SFazlay Rabbi foo();
300*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(* : ca) // expected-error {{const-qualified variable cannot be reduction}}
301*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
302*d64ba896SFazlay Rabbi foo();
303*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(- : da) // expected-error {{const-qualified variable cannot be reduction}}
304*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
305*d64ba896SFazlay Rabbi foo();
306*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(^ : fl) // expected-error {{invalid operands to binary expression ('float' and 'float')}}
307*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
308*d64ba896SFazlay Rabbi foo();
309*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}}
310*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
311*d64ba896SFazlay Rabbi foo();
312*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cannot be reduction}}
313*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
314*d64ba896SFazlay Rabbi foo();
315*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(& : e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}} expected-error {{invalid operands to binary expression ('S5' and 'S5')}}
316*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
317*d64ba896SFazlay Rabbi foo();
318*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+ : h, k, B::x) // expected-error 2 {{threadprivate or thread local variable cannot be reduction}}
319*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
320*d64ba896SFazlay Rabbi foo();
321*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+ : o) // expected-error {{no viable overloaded '='}}
322*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
323*d64ba896SFazlay Rabbi foo();
324*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop private(i), reduction(+ : j), reduction(+ : q) // expected-error 2 {{argument of OpenMP clause 'reduction' must reference the same object in all threads}}
325*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
326*d64ba896SFazlay Rabbi foo();
327*d64ba896SFazlay Rabbi #pragma omp parallel private(k)
328*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenMP clause 'reduction' must reference the same object in all threads}}
329*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
330*d64ba896SFazlay Rabbi foo();
331*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+ : p), reduction(+ : p) // expected-error {{variable can appear only once in OpenMP 'reduction' clause}} expected-note {{previously referenced here}}
332*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
333*d64ba896SFazlay Rabbi foo();
334*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+ : r) // expected-error {{const-qualified variable cannot be reduction}}
335*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
336*d64ba896SFazlay Rabbi foo();
337*d64ba896SFazlay Rabbi #pragma omp parallel shared(i)
338*d64ba896SFazlay Rabbi #pragma omp parallel reduction(min : i)
339*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(max : j) // expected-error {{argument of OpenMP clause 'reduction' must reference the same object in all threads}}
340*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
341*d64ba896SFazlay Rabbi foo();
342*d64ba896SFazlay Rabbi #pragma omp parallel private(fl)
343*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+ : fl)
344*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
345*d64ba896SFazlay Rabbi foo();
346*d64ba896SFazlay Rabbi #pragma omp parallel reduction(* : fl)
347*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+ : fl)
348*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
349*d64ba896SFazlay Rabbi foo();
350*d64ba896SFazlay Rabbi static int m;
351*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(+ : m) // OK
352*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
353*d64ba896SFazlay Rabbi m++;
354*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop reduction(task, + : m) // omp45-error 2 {{expected expression}} omp45-warning {{missing ':' after reduction identifier - ignoring}}
355*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
356*d64ba896SFazlay Rabbi m++;
357*d64ba896SFazlay Rabbi #pragma omp parallel masked taskloop nogroup reduction(+ : m) // expected-error {{'reduction' clause cannot be used with 'nogroup' clause}}
358*d64ba896SFazlay Rabbi for (int i = 0; i < 10; ++i)
359*d64ba896SFazlay Rabbi m++;
360*d64ba896SFazlay Rabbi
361*d64ba896SFazlay Rabbi return tmain(argc) + tmain(fl); // expected-note {{in instantiation of function template specialization 'tmain<int>' requested here}} expected-note {{in instantiation of function template specialization 'tmain<float>' requested here}}
362*d64ba896SFazlay Rabbi }
363