blob: d6990805450b3b514a68146b791fc1b8d8f5ad76 [file] [log] [blame]
Arpith Chacko Jacobcef5c952016-01-22 00:49:21 +00001// RUN: %clang_cc1 -verify -fopenmp -ferror-limit 100 -o - -std=c++11 %s
2
Alexey Bataeva8a9153a2017-12-29 18:07:07 +00003// RUN: %clang_cc1 -verify -fopenmp-simd -ferror-limit 100 -o - -std=c++11 %s
4
Arpith Chacko Jacobcef5c952016-01-22 00:49:21 +00005void foo() {
6}
7
8bool foobool(int argc) {
9 return argc;
10}
11
12struct S1; // expected-note {{declared here}}
13
14class vector {
15 public:
16 int operator[](int index) { return 0; }
17};
18
19int main(int argc, char **argv, char *env[]) {
20 vector vec;
21 typedef float V __attribute__((vector_size(16)));
22 V a;
23 auto arr = x; // expected-error {{use of undeclared identifier 'x'}}
24
25 #pragma omp target depend // expected-error {{expected '(' after 'depend'}}
26 foo();
Sergi Mateo Bellido31df1ad2019-02-04 07:33:19 +000027 #pragma omp target depend ( // expected-error {{expected 'in', 'out', 'inout' or 'mutexinoutset' in OpenMP clause 'depend'}} expected-error {{expected ')'}} expected-note {{to match this '('}} expected-warning {{missing ':' after dependency type - ignoring}}
Arpith Chacko Jacobcef5c952016-01-22 00:49:21 +000028 foo();
Sergi Mateo Bellido31df1ad2019-02-04 07:33:19 +000029 #pragma omp target depend () // expected-error {{expected 'in', 'out', 'inout' or 'mutexinoutset' in OpenMP clause 'depend'}} expected-warning {{missing ':' after dependency type - ignoring}}
Arpith Chacko Jacobcef5c952016-01-22 00:49:21 +000030 foo();
Sergi Mateo Bellido31df1ad2019-02-04 07:33:19 +000031 #pragma omp target depend (argc // expected-error {{expected 'in', 'out', 'inout' or 'mutexinoutset' in OpenMP clause 'depend'}} expected-warning {{missing ':' after dependency type - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
Arpith Chacko Jacobcef5c952016-01-22 00:49:21 +000032 foo();
Sergi Mateo Bellido31df1ad2019-02-04 07:33:19 +000033 #pragma omp target depend (source : argc) // expected-error {{expected 'in', 'out', 'inout' or 'mutexinoutset' in OpenMP clause 'depend'}}
Arpith Chacko Jacobcef5c952016-01-22 00:49:21 +000034 foo();
35 #pragma omp target depend (source) // expected-error {{expected expression}} expected-warning {{missing ':' after dependency type - ignoring}}
36 foo();
37 #pragma omp target depend (in : argc)) // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
38 foo();
39 #pragma omp target depend (out: ) // expected-error {{expected expression}}
40 foo();
Alexey Bataev463a9fe2017-07-27 19:15:30 +000041 #pragma omp target depend (inout : foobool(argc)), depend (in, argc) // expected-error {{expected addressable lvalue expression, array element or array section}} expected-warning {{missing ':' after dependency type - ignoring}} expected-error {{expected expression}}
Arpith Chacko Jacobcef5c952016-01-22 00:49:21 +000042 foo();
43 #pragma omp target depend (out :S1) // expected-error {{'S1' does not refer to a value}}
44 foo();
Alexey Bataev463a9fe2017-07-27 19:15:30 +000045 #pragma omp target depend(in : argv[1][1] = '2')
Arpith Chacko Jacobcef5c952016-01-22 00:49:21 +000046 foo();
Alexey Bataev463a9fe2017-07-27 19:15:30 +000047 #pragma omp target depend (in : vec[1]) // expected-error {{expected addressable lvalue expression, array element or array section}}
Arpith Chacko Jacobcef5c952016-01-22 00:49:21 +000048 foo();
49 #pragma omp target depend (in : argv[0])
50 foo();
51 #pragma omp target depend (in : ) // expected-error {{expected expression}}
52 foo();
Alexey Bataev463a9fe2017-07-27 19:15:30 +000053 #pragma omp target depend (in : main)
Arpith Chacko Jacobcef5c952016-01-22 00:49:21 +000054 foo();
Alexey Bataev463a9fe2017-07-27 19:15:30 +000055 #pragma omp target depend(in : a[0]) // expected-error{{expected addressable lvalue expression, array element or array section}}
Arpith Chacko Jacobcef5c952016-01-22 00:49:21 +000056 foo();
57 #pragma omp target depend (in : vec[1:2]) // expected-error {{ value is not an array or pointer}}
58 foo();
59 #pragma omp target depend (in : argv[ // expected-error {{expected expression}} expected-error {{expected ']'}} expected-error {{expected ')'}} expected-note {{to match this '['}} expected-note {{to match this '('}}
60 foo();
61 #pragma omp target depend (in : argv[: // expected-error {{expected expression}} expected-error {{expected ']'}} expected-error {{expected ')'}} expected-note {{to match this '['}} expected-note {{to match this '('}}
62 foo();
63 #pragma omp target depend (in : argv[:] // expected-error {{section length is unspecified and cannot be inferred because subscripted value is not an array}} expected-error {{expected ')'}} expected-note {{to match this '('}}
64 foo();
65 #pragma omp target depend (in : argv[argc: // expected-error {{expected expression}} expected-error {{expected ']'}} expected-error {{expected ')'}} expected-note {{to match this '['}} expected-note {{to match this '('}}
66 foo();
67 #pragma omp target depend (in : argv[argc:argc] // expected-error {{expected ')'}} expected-note {{to match this '('}}
68 foo();
69 #pragma omp target depend (in : argv[0:-1]) // expected-error {{section length is evaluated to a negative value -1}}
70 foo();
Kelvin Liad9ecba2016-07-20 20:45:29 +000071 #pragma omp target depend (in : argv[-1:0])
Arpith Chacko Jacobcef5c952016-01-22 00:49:21 +000072 foo();
73 #pragma omp target depend (in : argv[:]) // expected-error {{section length is unspecified and cannot be inferred because subscripted value is not an array}}
74 foo();
75 #pragma omp target depend (in : argv[3:4:1]) // expected-error {{expected ']'}} expected-note {{to match this '['}}
76 foo();
77 #pragma omp target depend(in:a[0:1]) // expected-error {{subscripted value is not an array or pointer}}
78 foo();
79 #pragma omp target depend(in:argv[argv[:2]:1]) // expected-error {{OpenMP array section is not allowed here}}
80 foo();
81 #pragma omp target depend(in:argv[0:][:]) // expected-error {{section length is unspecified and cannot be inferred because subscripted value is not an array}}
82 foo();
83 #pragma omp target depend(in:env[0:][:]) // expected-error {{section length is unspecified and cannot be inferred because subscripted value is an array of unknown bound}}
84 foo();
85 #pragma omp target depend(in : argv[ : argc][1 : argc - 1])
86 foo();
87 #pragma omp target depend(in : arr[0])
88 foo();
89
90 return 0;
91}