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