]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/OpenMP/teams_private_messages.cpp
Vendor import of clang trunk r351319 (just before the release_80 branch
[FreeBSD/FreeBSD.git] / test / OpenMP / teams_private_messages.cpp
1 // RUN: %clang_cc1 -verify -fopenmp %s
2
3 // RUN: %clang_cc1 -verify -fopenmp-simd %s
4
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 };
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}}
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) {
55   const int d = 5; // expected-note {{'d' defined here}}
56   const int da[5] = { 0 }; // expected-note {{'da' defined here}}
57   S4 e(4);
58   S5 g(5);
59   int i;
60   int &j = i;
61   #pragma omp target
62   #pragma omp teams private // expected-error {{expected '(' after 'private'}}
63   foo();
64   #pragma omp target
65   #pragma omp teams private ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
66   foo();
67   #pragma omp target
68   #pragma omp teams private () // expected-error {{expected expression}}
69   foo();
70   #pragma omp target
71   #pragma omp teams private (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
72   foo();
73   #pragma omp target
74   #pragma omp teams private (argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
75   foo();
76   #pragma omp target
77   #pragma omp teams private (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
78   foo();
79   #pragma omp target
80   #pragma omp teams private (argc argv) // expected-error {{expected ',' or ')' in 'private' clause}}
81   foo();
82   #pragma omp target
83   #pragma omp teams private (S1) // expected-error {{'S1' does not refer to a value}}
84   foo();
85   #pragma omp target
86   #pragma omp 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}}
87   foo();
88   #pragma omp target
89   #pragma omp teams private (argv[1]) // expected-error {{expected variable name}}
90   foo();
91   #pragma omp target
92   #pragma omp teams private(ba)
93   foo();
94   #pragma omp target
95   #pragma omp teams private(ca) // expected-error {{const-qualified variable without mutable fields cannot be private}}
96   foo();
97   #pragma omp target
98   #pragma omp teams private(da) // expected-error {{const-qualified variable cannot be private}}
99   foo();
100   #pragma omp target
101   #pragma omp teams private(S2::S2s) // expected-error {{shared variable cannot be private}}
102   foo();
103   #pragma omp target
104   #pragma omp teams private(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
105   foo();
106   #pragma omp target
107   #pragma omp teams private(threadvar, B::x) // expected-error 2 {{threadprivate or thread local variable cannot be private}}
108   foo();
109   #pragma omp target
110   #pragma omp teams shared(i), private(i) // expected-error {{shared variable cannot be private}} expected-note {{defined as shared}}
111   foo();
112   #pragma omp target
113   #pragma omp teams firstprivate(i) private(i) // expected-error {{firstprivate variable cannot be private}} expected-note {{defined as firstprivate}}
114   foo();
115   #pragma omp target
116   #pragma omp teams private(i)
117   foo();
118   #pragma omp target
119   #pragma omp teams private(j)
120   foo();
121   #pragma omp target
122   #pragma omp teams firstprivate(i)
123   for (int k = 0; k < 10; ++k) {
124     #pragma omp parallel private(i)
125     foo();
126   }
127   static int m;
128   #pragma omp target
129   #pragma omp teams private(m) // OK
130   foo();
131
132   return 0;
133 }