blob: ceb268f40a70f2566167f2990e8a5bc10056db75 [file] [log] [blame]
Kelvin Libf594a52016-12-17 05:48:59 +00001// RUN: %clang_cc1 -verify -fopenmp %s
2
Alexey Bataeva8a9153a2017-12-29 18:07:07 +00003// RUN: %clang_cc1 -verify -fopenmp-simd %s
4
Kelvin Libf594a52016-12-17 05:48:59 +00005void foo() {
6}
7
8bool foobool(int argc) {
9 return argc;
10}
11
12struct S1; // expected-note {{declared here}} expected-note{{forward declaration of 'S1'}}
13extern S1 a;
14class S2 {
15 mutable int a;
16public:
17 S2():a(0) { }
18 static float S2s; // expected-note {{static data member is predetermined as shared}}
19};
20const S2 b;
21const S2 ba[5];
22class S3 {
23 int a;
24public:
25 S3():a(0) { }
26};
Joel E. Dennye6234d1422019-01-04 22:11:31 +000027const S3 c; // expected-note {{'c' defined here}}
28const S3 ca[5]; // expected-note {{'ca' defined here}}
29extern const int f; // expected-note {{'f' declared here}}
Kelvin Libf594a52016-12-17 05:48:59 +000030class S4 {
31 int a;
32 S4(); // expected-note {{implicitly declared private here}}
33public:
34 S4(int v):a(v) { }
35};
36class S5 {
37 int a;
38 S5():a(0) {} // expected-note {{implicitly declared private here}}
39public:
40 S5(int v):a(v) { }
41};
42
43int threadvar;
44#pragma omp threadprivate(threadvar) // expected-note {{defined as threadprivate or thread local}}
45
46namespace A {
47double x;
48#pragma omp threadprivate(x) // expected-note {{defined as threadprivate or thread local}}
49}
50namespace B {
51using A::x;
52}
53
54int main(int argc, char **argv) {
Joel E. Dennye6234d1422019-01-04 22:11:31 +000055 const int d = 5; // expected-note {{'d' defined here}}
56 const int da[5] = { 0 }; // expected-note {{'da' defined here}}
Kelvin Libf594a52016-12-17 05:48:59 +000057 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. Dennye6234d1422019-01-04 22:11:31 +000077#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 Libf594a52016-12-17 05:48:59 +000078 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. Dennye6234d1422019-01-04 22:11:31 +000083#pragma omp target teams private(ca) // expected-error {{const-qualified variable without mutable fields cannot be private}}
Kelvin Libf594a52016-12-17 05:48:59 +000084 foo();
Joel E. Dennye6234d1422019-01-04 22:11:31 +000085#pragma omp target teams private(da) // expected-error {{const-qualified variable cannot be private}}
Kelvin Libf594a52016-12-17 05:48:59 +000086 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}