[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / OpenMP / distribute_simd_dist_schedule_messages.cpp
blob794681c02646c11adbadb19c5a45ec02b51e73f9
1 // RUN: %clang_cc1 -triple x86_64-apple-macos10.7.0 -verify -fopenmp -ferror-limit 100 -o - %s -Wuninitialized
3 // RUN: %clang_cc1 -triple x86_64-apple-macos10.7.0 -verify -fopenmp-simd -ferror-limit 100 -o - %s -Wuninitialized
5 void foo() {
8 bool foobool(int argc) {
9 return argc;
12 struct S1; // expected-note {{declared here}} expected-note {{declared here}}
14 template <class T, int N>
15 T tmain(T argc) {
16 T b = argc, c, d, e, f, g;
17 char ** argv;
18 static T a;
19 T z;
21 #pragma omp target
22 #pragma omp teams
23 #pragma omp distribute simd dist_schedule // expected-error {{expected '(' after 'dist_schedule'}}
24 for (int i = 0; i < 10; ++i) foo();
26 #pragma omp target
27 #pragma omp teams
28 #pragma omp distribute simd dist_schedule ( // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
29 for (int i = 0; i < 10; ++i) foo();
31 #pragma omp target
32 #pragma omp teams
33 #pragma omp distribute simd dist_schedule () // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}}
34 for (int i = 0; i < 10; ++i) foo();
36 #pragma omp target
37 #pragma omp teams
38 #pragma omp distribute simd dist_schedule (static // expected-error {{expected ')'}} expected-note {{to match this '('}}
39 for (int i = 0; i < 10; ++i) foo();
41 #pragma omp target
42 #pragma omp teams
43 #pragma omp distribute simd dist_schedule (static, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
44 for (int i = 0; i < 10; ++i) foo();
46 #pragma omp target
47 #pragma omp teams
48 #pragma omp distribute simd dist_schedule (argc)) // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}} expected-warning {{extra tokens at the end of '#pragma omp distribute simd' are ignored}}
49 for (int i = 0; i < 10; ++i) foo();
51 #pragma omp target
52 #pragma omp teams
53 #pragma omp distribute simd dist_schedule (static, argc > 0 ? argv[1] : argv[2]) // expected-error2 {{expression must have integral or unscoped enumeration type, not 'char *'}}
54 for (int i = 0; i < 10; ++i) foo();
56 #pragma omp target
57 #pragma omp teams
58 #pragma omp distribute simd dist_schedule (static), dist_schedule (static, z+1) // expected-error {{directive '#pragma omp distribute simd' cannot contain more than one 'dist_schedule' clause}}
59 for (int i = 0; i < 10; ++i) foo();
60 #pragma omp target
61 #pragma omp teams
62 #pragma omp distribute simd dist_schedule (static, S1) // expected-error {{'S1' does not refer to a value}}
63 for (int i = 0; i < 10; ++i) foo();
64 #pragma omp target
65 #pragma omp teams
66 #pragma omp distribute simd dist_schedule (static, argv[1]=2) // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error3 {{expression must have integral or unscoped enumeration type, not 'char *'}}
67 for (int i = 0; i < 10; ++i) foo();
68 return T();
71 int main(int argc, char **argv) {
72 int z;
73 #pragma omp target
74 #pragma omp teams
75 #pragma omp distribute simd dist_schedule // expected-error {{expected '(' after 'dist_schedule'}}
76 for (int i = 0; i < 10; ++i) foo();
78 #pragma omp target
79 #pragma omp teams
80 #pragma omp distribute simd dist_schedule ( // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
81 for (int i = 0; i < 10; ++i) foo();
83 #pragma omp target
84 #pragma omp teams
85 #pragma omp distribute simd dist_schedule () // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}}
86 for (int i = 0; i < 10; ++i) foo();
88 #pragma omp target
89 #pragma omp teams
90 #pragma omp distribute simd dist_schedule (static // expected-error {{expected ')'}} expected-note {{to match this '('}}
91 for (int i = 0; i < 10; ++i) foo();
93 #pragma omp target
94 #pragma omp teams
95 #pragma omp distribute simd dist_schedule (static, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
96 for (int i = 0; i < 10; ++i) foo();
98 #pragma omp target
99 #pragma omp teams
100 #pragma omp distribute simd dist_schedule (argc)) // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}} expected-warning {{extra tokens at the end of '#pragma omp distribute simd' are ignored}}
101 for (int i = 0; i < 10; ++i) foo();
103 #pragma omp target
104 #pragma omp teams
105 #pragma omp distribute simd dist_schedule (static, argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
106 for (int i = 0; i < 10; ++i) foo();
108 #pragma omp target
109 #pragma omp teams
110 #pragma omp distribute simd dist_schedule (static), dist_schedule (static, z+1) // expected-error {{directive '#pragma omp distribute simd' cannot contain more than one 'dist_schedule' clause}}
111 for (int i = 0; i < 10; ++i) foo();
113 #pragma omp target
114 #pragma omp teams
115 #pragma omp distribute simd dist_schedule (static, S1) // expected-error {{'S1' does not refer to a value}}
116 for (int i = 0; i < 10; ++i) foo();
118 #pragma omp target
119 #pragma omp teams
120 #pragma omp distribute simd dist_schedule (static, argv[1]=2) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
121 for (int i = 0; i < 10; ++i) foo();
122 return (tmain<int, 5>(argc) + tmain<char, 1>(argv[0][0])); // expected-note {{in instantiation of function template specialization 'tmain<int, 5>' requested here}} expected-note {{in instantiation of function template specialization 'tmain<char, 1>' requested here}}