Clang Project

clang_source_code/test/OpenMP/distribute_parallel_for_dist_schedule_messages.cpp
1// RUN: %clang_cc1 -triple x86_64-apple-macos10.7.0 -verify -fopenmp -ferror-limit 100 -o - %s
2
3// RUN: %clang_cc1 -triple x86_64-apple-macos10.7.0 -verify -fopenmp-simd -ferror-limit 100 -o - %s
4
5void foo() {
6}
7
8bool foobool(int argc) {
9  return argc;
10}
11
12struct S1; // expected-note {{declared here}} expected-note {{declared here}}
13
14template <class T, int N>
15T tmain(T argc) {
16  T b = argc, c, d, e, f, g;
17  char ** argv;
18  static T a;
19// CHECK: static T a;
20#pragma omp target
21#pragma omp teams
22#pragma omp distribute parallel for dist_schedule // expected-error {{expected '(' after 'dist_schedule'}}
23  for (int i = 0; i < 10; ++i) foo();
24#pragma omp target
25#pragma omp teams
26#pragma omp distribute parallel for dist_schedule ( // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
27  for (int i = 0; i < 10; ++i) foo();
28#pragma omp target
29#pragma omp teams
30#pragma omp distribute parallel for dist_schedule () // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}}
31  for (int i = 0; i < 10; ++i) foo();
32#pragma omp target
33#pragma omp teams
34#pragma omp distribute parallel for dist_schedule (static // expected-error {{expected ')'}} expected-note {{to match this '('}}
35  for (int i = 0; i < 10; ++i) foo();
36#pragma omp target
37#pragma omp teams
38#pragma omp distribute parallel for dist_schedule (static, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
39  for (int i = 0; i < 10; ++i) foo();
40#pragma omp target
41#pragma omp teams
42#pragma omp distribute parallel for dist_schedule (argc)) // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}} expected-warning {{extra tokens at the end of '#pragma omp distribute parallel for' are ignored}}
43  for (int i = 0; i < 10; ++i) foo();
44#pragma omp target
45#pragma omp teams
46#pragma omp distribute parallel for dist_schedule (static, argc > 0 ? argv[1] : argv[2]) // expected-error2 {{expression must have integral or unscoped enumeration type, not 'char *'}}
47  for (int i = 0; i < 10; ++i) foo();
48#pragma omp target
49#pragma omp teams
50#pragma omp distribute parallel for dist_schedule (static), dist_schedule (static, 1) // expected-error {{directive '#pragma omp distribute parallel for' cannot contain more than one 'dist_schedule' clause}}
51  for (int i = 0; i < 10; ++i) foo();
52#pragma omp target
53#pragma omp teams
54#pragma omp distribute parallel for dist_schedule (static, S1) // expected-error {{'S1' does not refer to a value}}
55  for (int i = 0; i < 10; ++i) foo();
56#pragma omp target
57#pragma omp teams
58#pragma omp distribute parallel for 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 *'}}
59  for (int i = 0; i < 10; ++i) foo();
60  return T();
61}
62
63int main(int argc, char **argv) {
64#pragma omp target
65#pragma omp teams
66#pragma omp distribute parallel for dist_schedule // expected-error {{expected '(' after 'dist_schedule'}}
67  for (int i = 0; i < 10; ++i) foo();
68#pragma omp target
69#pragma omp teams
70#pragma omp distribute parallel for dist_schedule ( // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
71  for (int i = 0; i < 10; ++i) foo();
72#pragma omp target
73#pragma omp teams
74#pragma omp distribute parallel for dist_schedule () // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}}
75  for (int i = 0; i < 10; ++i) foo();
76#pragma omp target
77#pragma omp teams
78#pragma omp distribute parallel for dist_schedule (static // expected-error {{expected ')'}} expected-note {{to match this '('}}
79  for (int i = 0; i < 10; ++i) foo();
80#pragma omp target
81#pragma omp teams
82#pragma omp distribute parallel for dist_schedule (static, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
83  for (int i = 0; i < 10; ++i) foo();
84#pragma omp target
85#pragma omp teams
86#pragma omp distribute parallel for dist_schedule (argc)) // expected-error {{expected 'static' in OpenMP clause 'dist_schedule'}} expected-warning {{extra tokens at the end of '#pragma omp distribute parallel for' are ignored}}
87  for (int i = 0; i < 10; ++i) foo();
88#pragma omp target
89#pragma omp teams
90#pragma omp distribute parallel for dist_schedule (static, argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
91  for (int i = 0; i < 10; ++i) foo();
92#pragma omp target
93#pragma omp teams
94#pragma omp distribute parallel for dist_schedule (static), dist_schedule (static, 1) // expected-error {{directive '#pragma omp distribute parallel for' cannot contain more than one 'dist_schedule' clause}}
95  for (int i = 0; i < 10; ++i) foo();
96#pragma omp target
97#pragma omp teams
98#pragma omp distribute parallel for dist_schedule (static, S1) // expected-error {{'S1' does not refer to a value}}
99  for (int i = 0; i < 10; ++i) foo();
100#pragma omp target
101#pragma omp teams
102#pragma omp distribute parallel for 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 '('}}
103  for (int i = 0; i < 10; ++i) foo();
104  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}}
105}
106