Kelvin Li | bf594a5 | 2016-12-17 05:48:59 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -verify -fopenmp %s |
| 2 | |
Alexey Bataev | a8a9153a | 2017-12-29 18:07:07 +0000 | [diff] [blame] | 3 | // RUN: %clang_cc1 -verify -fopenmp-simd %s |
| 4 | |
Kelvin Li | bf594a5 | 2016-12-17 05:48:59 +0000 | [diff] [blame] | 5 | void foo() { |
| 6 | } |
| 7 | |
| 8 | bool foobool(int argc) { |
| 9 | return argc; |
| 10 | } |
| 11 | |
| 12 | struct S1; // expected-note {{declared here}} expected-note{{forward declaration of 'S1'}} |
| 13 | extern S1 a; |
| 14 | class S2 { |
| 15 | mutable int a; |
| 16 | public: |
| 17 | S2():a(0) { } |
| 18 | static float S2s; // expected-note {{static data member is predetermined as shared}} |
| 19 | }; |
| 20 | const S2 b; |
| 21 | const S2 ba[5]; |
| 22 | class S3 { |
| 23 | int a; |
| 24 | public: |
| 25 | S3():a(0) { } |
| 26 | }; |
Joel E. Denny | e6234d142 | 2019-01-04 22:11:31 +0000 | [diff] [blame] | 27 | const S3 c; // expected-note {{'c' defined here}} |
| 28 | const S3 ca[5]; // expected-note {{'ca' defined here}} |
| 29 | extern const int f; // expected-note {{'f' declared here}} |
Kelvin Li | bf594a5 | 2016-12-17 05:48:59 +0000 | [diff] [blame] | 30 | class S4 { |
| 31 | int a; |
| 32 | S4(); // expected-note {{implicitly declared private here}} |
| 33 | public: |
| 34 | S4(int v):a(v) { } |
| 35 | }; |
| 36 | class S5 { |
| 37 | int a; |
| 38 | S5():a(0) {} // expected-note {{implicitly declared private here}} |
| 39 | public: |
| 40 | S5(int v):a(v) { } |
| 41 | }; |
| 42 | |
| 43 | int threadvar; |
| 44 | #pragma omp threadprivate(threadvar) // expected-note {{defined as threadprivate or thread local}} |
| 45 | |
| 46 | namespace A { |
| 47 | double x; |
| 48 | #pragma omp threadprivate(x) // expected-note {{defined as threadprivate or thread local}} |
| 49 | } |
| 50 | namespace B { |
| 51 | using A::x; |
| 52 | } |
| 53 | |
| 54 | int main(int argc, char **argv) { |
Joel E. Denny | e6234d142 | 2019-01-04 22:11:31 +0000 | [diff] [blame] | 55 | const int d = 5; // expected-note {{'d' defined here}} |
| 56 | const int da[5] = { 0 }; // expected-note {{'da' defined here}} |
Kelvin Li | bf594a5 | 2016-12-17 05:48:59 +0000 | [diff] [blame] | 57 | S4 e(4); |
| 58 | S5 g(5); |
| 59 | int i; |
| 60 | int &j = i; |
| 61 | #pragma omp target teams private // expected-error {{expected '(' after 'private'}} |
| 62 | foo(); |
| 63 | #pragma omp target teams private ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} |
| 64 | foo(); |
| 65 | #pragma omp target teams private () // expected-error {{expected expression}} |
| 66 | foo(); |
| 67 | #pragma omp target teams private (argc // expected-error {{expected ')'}} expected-note {{to match this '('}} |
| 68 | foo(); |
| 69 | #pragma omp target teams private (argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} |
| 70 | foo(); |
| 71 | #pragma omp target teams private (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}} |
| 72 | foo(); |
| 73 | #pragma omp target teams private (argc argv) // expected-error {{expected ',' or ')' in 'private' clause}} |
| 74 | foo(); |
| 75 | #pragma omp target teams private (S1) // expected-error {{'S1' does not refer to a value}} |
| 76 | foo(); |
Joel E. Denny | e6234d142 | 2019-01-04 22:11:31 +0000 | [diff] [blame] | 77 | #pragma omp target teams private (a, b, c, d, f) // expected-error {{a private variable with incomplete type 'S1'}} expected-error 1 {{const-qualified variable without mutable fields cannot be private}} expected-error 2 {{const-qualified variable cannot be private}} |
Kelvin Li | bf594a5 | 2016-12-17 05:48:59 +0000 | [diff] [blame] | 78 | foo(); |
| 79 | #pragma omp target teams private (argv[1]) // expected-error {{expected variable name}} |
| 80 | foo(); |
| 81 | #pragma omp target teams private(ba) |
| 82 | foo(); |
Joel E. Denny | e6234d142 | 2019-01-04 22:11:31 +0000 | [diff] [blame] | 83 | #pragma omp target teams private(ca) // expected-error {{const-qualified variable without mutable fields cannot be private}} |
Kelvin Li | bf594a5 | 2016-12-17 05:48:59 +0000 | [diff] [blame] | 84 | foo(); |
Joel E. Denny | e6234d142 | 2019-01-04 22:11:31 +0000 | [diff] [blame] | 85 | #pragma omp target teams private(da) // expected-error {{const-qualified variable cannot be private}} |
Kelvin Li | bf594a5 | 2016-12-17 05:48:59 +0000 | [diff] [blame] | 86 | foo(); |
| 87 | #pragma omp target teams private(S2::S2s) // expected-error {{shared variable cannot be private}} |
| 88 | foo(); |
| 89 | #pragma omp target teams private(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}} |
| 90 | foo(); |
| 91 | #pragma omp target teams private(threadvar, B::x) // expected-error 2 {{threadprivate or thread local variable cannot be private}} |
| 92 | foo(); |
| 93 | #pragma omp target teams shared(i), private(i) // expected-error {{shared variable cannot be private}} expected-note {{defined as shared}} |
| 94 | foo(); |
| 95 | #pragma omp target teams firstprivate(i) private(i) // expected-error {{firstprivate variable cannot be private}} expected-note {{defined as firstprivate}} |
| 96 | foo(); |
| 97 | #pragma omp target teams private(i) |
| 98 | foo(); |
| 99 | #pragma omp target teams private(j) |
| 100 | foo(); |
| 101 | #pragma omp target teams firstprivate(i) |
| 102 | for (int k = 0; k < 10; ++k) { |
| 103 | #pragma omp parallel private(i) |
| 104 | foo(); |
| 105 | } |
| 106 | static int m; |
| 107 | #pragma omp target teams private(m) // OK |
| 108 | foo(); |
| 109 | |
| 110 | return 0; |
| 111 | } |