1 // RUN: %clang_cc1 -verify -fopenmp -std=c++11 -ferror-limit 100 -o - %s -Wuninitialized
3 // RUN: %clang_cc1 -verify -fopenmp-simd -std=c++11 -ferror-limit 100 -o - %s -Wuninitialized
8 bool foobool(int argc
) {
12 struct S1
; // expected-note 2 {{declared here}}
14 template <typename T
, int C
> // expected-note {{declared here}}
18 #pragma omp target teams distribute num_teams(C)
19 for (int i
=0; i
<100; i
++) foo();
20 #pragma omp target teams distribute num_teams(T) // expected-error {{'T' does not refer to a value}}
21 for (int i
=0; i
<100; i
++) foo();
22 #pragma omp target teams distribute num_teams // expected-error {{expected '(' after 'num_teams'}}
23 for (int i
=0; i
<100; i
++) foo();
24 #pragma omp target teams distribute num_teams( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
25 for (int i
=0; i
<100; i
++) foo();
26 #pragma omp target teams distribute num_teams() // expected-error {{expected expression}}
27 for (int i
=0; i
<100; i
++) foo();
28 #pragma omp target teams distribute num_teams(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
29 for (int i
=0; i
<100; i
++) foo();
30 #pragma omp target teams distribute num_teams(argc)) // expected-warning {{extra tokens at the end of '#pragma omp target teams distribute' are ignored}}
31 for (int i
=0; i
<100; i
++) foo();
32 #pragma omp target teams distribute num_teams(argc > 0 ? a[1] : a[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
33 for (int i
=0; i
<100; i
++) foo();
34 #pragma omp target teams distribute num_teams(argc + argc + z)
35 for (int i
=0; i
<100; i
++) foo();
36 #pragma omp target teams distribute num_teams(argc), num_teams (argc+1) // expected-error {{directive '#pragma omp target teams distribute' cannot contain more than one 'num_teams' clause}}
37 for (int i
=0; i
<100; i
++) foo();
38 #pragma omp target teams distribute num_teams(S1) // expected-error {{'S1' does not refer to a value}}
39 for (int i
=0; i
<100; i
++) foo();
40 #pragma omp target teams distribute num_teams(-2) // expected-error {{argument to 'num_teams' clause must be a strictly positive integer value}}
41 for (int i
=0; i
<100; i
++) foo();
42 #pragma omp target teams distribute num_teams(-10u)
43 for (int i
=0; i
<100; i
++) foo();
44 #pragma omp target teams distribute num_teams(3.14) // expected-error 2 {{expression must have integral or unscoped enumeration type, not 'double'}}
45 for (int i
=0; i
<100; i
++) foo();
47 #pragma omp target teams distribute num_teams(1, 2, 3) // expected-error {{only one expression allowed in 'num_teams' clause}}
48 for (int i
=0; i
<100; i
++) foo();
50 #pragma omp target teams distribute thread_limit(1, 2, 3) // expected-error {{only one expression allowed in 'thread_limit' clause}}
51 for (int i
=0; i
<100; i
++) foo();
53 #pragma omp target teams ompx_bare num_teams(1, 2, 3, 4) thread_limit(1) // expected-error {{at most three expressions are allowed in 'num_teams' clause in 'target teams ompx_bare' construct}}
54 for (int i
=0; i
<100; i
++) foo();
56 #pragma omp target teams ompx_bare num_teams(1) thread_limit(1, 2, 3, 4) // expected-error {{at most three expressions are allowed in 'thread_limit' clause in 'target teams ompx_bare' construct}}
57 for (int i
=0; i
<100; i
++) foo();
62 int main(int argc
, char **argv
) {
64 #pragma omp target teams distribute num_teams // expected-error {{expected '(' after 'num_teams'}}
65 for (int i
=0; i
<100; i
++) foo();
67 #pragma omp target teams distribute num_teams ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
68 for (int i
=0; i
<100; i
++) foo();
70 #pragma omp target teams distribute num_teams () // expected-error {{expected expression}}
71 for (int i
=0; i
<100; i
++) foo();
73 #pragma omp target teams distribute num_teams (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
74 for (int i
=0; i
<100; i
++) foo();
76 #pragma omp target teams distribute num_teams (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target teams distribute' are ignored}}
77 for (int i
=0; i
<100; i
++) foo();
79 #pragma omp target teams distribute num_teams (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
80 for (int i
=0; i
<100; i
++) foo();
82 #pragma omp target teams distribute num_teams (argc + argc+z)
83 for (int i
=0; i
<100; i
++) foo();
85 #pragma omp target teams distribute num_teams (argc), num_teams (argc+1) // expected-error {{directive '#pragma omp target teams distribute' cannot contain more than one 'num_teams' clause}}
86 for (int i
=0; i
<100; i
++) foo();
88 #pragma omp target teams distribute num_teams (S1) // expected-error {{'S1' does not refer to a value}}
89 for (int i
=0; i
<100; i
++) foo();
91 #pragma omp target teams distribute num_teams (-2) // expected-error {{argument to 'num_teams' clause must be a strictly positive integer value}}
92 for (int i
=0; i
<100; i
++) foo();
94 #pragma omp target teams distribute num_teams (-10u)
95 for (int i
=0; i
<100; i
++) foo();
97 #pragma omp target teams distribute num_teams (3.14) // expected-error {{expression must have integral or unscoped enumeration type, not 'double'}}
98 for (int i
=0; i
<100; i
++) foo();
100 #pragma omp target teams distribute num_teams(1, 2, 3) // expected-error {{only one expression allowed in 'num_teams' clause}}
101 for (int i
=0; i
<100; i
++) foo();
103 #pragma omp target teams distribute thread_limit(1, 2, 3) // expected-error {{only one expression allowed in 'thread_limit' clause}}
104 for (int i
=0; i
<100; i
++) foo();
106 #pragma omp target teams ompx_bare num_teams(1, 2, 3, 4) thread_limit(1) // expected-error {{at most three expressions are allowed in 'num_teams' clause in 'target teams ompx_bare' construct}}
107 for (int i
=0; i
<100; i
++) foo();
109 #pragma omp target teams ompx_bare num_teams(1) thread_limit(1, 2, 3, 4) // expected-error {{at most three expressions are allowed in 'thread_limit' clause in 'target teams ompx_bare' construct}}
110 for (int i
=0; i
<100; i
++) foo();
112 return tmain
<int, 10>(argc
); // expected-note {{in instantiation of function template specialization 'tmain<int, 10>' requested here}}