[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / OpenMP / teams_default_messages.cpp
blob9131a088adb4a648f37404d4537ede191b3d91db
1 // RUN: %clang_cc1 -verify -fopenmp-version=51 -fopenmp -DOMP51 -o - %s -Wuninitialized
3 // RUN: %clang_cc1 -verify -fopenmp-version=51 -fopenmp-simd -DOMP51 -o - %s -Wuninitialized
5 // RUN: %clang_cc1 -verify -fopenmp-version=50 -fopenmp -o - %s -Wuninitialized
7 // RUN: %clang_cc1 -verify -fopenmp-version=50 -fopenmp-simd -o - %s -Wuninitialized
9 void foo();
11 namespace {
12 static int y = 0;
14 static int x = 0;
16 int main(int argc, char **argv) {
17 #pragma omp target
18 #pragma omp teams default // expected-error {{expected '(' after 'default'}}
19 foo();
20 #pragma omp target
21 #pragma omp teams default( // expected-error {{expected 'none', 'shared', 'private' or 'firstprivate' in OpenMP clause 'default'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
22 foo();
23 #pragma omp target
24 #pragma omp teams default() // expected-error {{expected 'none', 'shared', 'private' or 'firstprivate' in OpenMP clause 'default'}}
25 foo();
26 #pragma omp target
27 #pragma omp teams default (none // expected-error {{expected ')'}} expected-note {{to match this '('}}
28 foo();
29 #pragma omp target
30 #pragma omp teams default (shared), default(shared) // expected-error {{directive '#pragma omp teams' cannot contain more than one 'default' clause}}
31 foo();
32 #pragma omp target
33 #pragma omp teams default(x) // expected-error {{expected 'none', 'shared', 'private' or 'firstprivate' in OpenMP clause 'default'}}
34 foo();
36 #pragma omp target
37 #pragma omp teams default(none) // expected-note {{explicit data sharing attribute requested here}}
38 ++argc; // expected-error {{variable 'argc' must have explicitly specified data sharing attributes}}
40 #pragma omp target
41 #pragma omp teams default(none) // expected-note {{explicit data sharing attribute requested here}}
42 #pragma omp parallel default(shared)
43 ++argc; // expected-error {{variable 'argc' must have explicitly specified data sharing attributes}}
45 #pragma omp teams if(x) // expected-error {{unexpected OpenMP clause 'if' in directive '#pragma omp teams'}}
46 foo();
48 #ifdef OMP51
49 #pragma omp target
50 #pragma omp teams default(firstprivate) // expected-note 2 {{explicit data sharing attribute requested here}}
52 ++x; // expected-error {{variable 'x' must have explicitly specified data sharing attributes}}
53 ++y; // expected-error {{variable 'y' must have explicitly specified data sharing attributes}}
55 #pragma omp target
56 #pragma omp teams default(private) // expected-note 2 {{explicit data sharing attribute requested here}}
58 ++x; // expected-error {{variable 'x' must have explicitly specified data sharing attributes}}
59 ++y; // expected-error {{variable 'y' must have explicitly specified data sharing attributes}}
61 #pragma omp teams if(x) // expected-error {{unexpected OpenMP clause 'if' in directive '#pragma omp teams'}}
62 foo();
64 #endif
65 return 0;