Clang Project

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