1 // RUN: %clang_cc1 -verify -fopenmp -fopenmp-version=45 %s -Wuninitialized
3 // RUN: %clang_cc1 -verify -fopenmp-simd -fopenmp-version=45 %s -Wuninitialized
5 // RUN: %clang_cc1 -verify -fopenmp %s -Wuninitialized
6 // RUN: %clang_cc1 -verify -fopenmp-simd %s -Wuninitialized
11 bool foobool(int argc
) {
16 int cond
; // expected-note {{initialize the variable 'cond' to silence this warning}}
17 #pragma omp target if(cond) // expected-warning {{variable 'cond' is uninitialized when used here}}
18 for (int i
= 0; i
< 10; ++i
)
22 struct S1
; // expected-note {{declared here}}
24 template <class T
, class S
> // expected-note {{declared here}}
25 int tmain(T argc
, S
**argv
) {
27 #pragma omp target if // expected-error {{expected '(' after 'if'}}
29 #pragma omp target if ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
31 #pragma omp target if () // expected-error {{expected expression}}
33 #pragma omp target if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
35 #pragma omp target if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
37 #pragma omp target if (argc > 0 ? argv[1] : argv[2])
39 #pragma omp target if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp target' cannot contain more than one 'if' clause}}
41 #pragma omp target if (S) // expected-error {{'S' does not refer to a value}}
43 #pragma omp target if (argv[1]=2) // expected-error {{expected ')'}} expected-note {{to match this '('}}
45 #pragma omp target if (argc argc) // expected-error {{expected ')'}} expected-note {{to match this '('}}
47 #pragma omp target if(argc+z)
49 #pragma omp target if(target : // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
51 #pragma omp target if(target : argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
53 #pragma omp target if(target : argc)
55 #pragma omp target if(target : argc) if (for:argc) // expected-error {{directive name modifier 'for' is not allowed for '#pragma omp target'}}
57 #pragma omp target if(target : argc) if (target:argc) // expected-error {{directive '#pragma omp target' cannot contain more than one 'if' clause with 'target' name modifier}}
59 #pragma omp target if(target : argc) if (argc) // expected-error {{no more 'if' clause is allowed}} expected-note {{previous clause with directive name modifier specified here}}
65 int main(int argc
, char **argv
) {
67 #pragma omp target if // expected-error {{expected '(' after 'if'}}
69 #pragma omp target if ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
71 #pragma omp target if () // expected-error {{expected expression}}
73 #pragma omp target if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
75 #pragma omp target if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
77 #pragma omp target if (argc > 0 ? argv[1] : argv[2])
79 #pragma omp target if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp target' cannot contain more than one 'if' clause}}
81 #pragma omp target if (S1) // expected-error {{'S1' does not refer to a value}}
83 #pragma omp target if (argv[1]=2) // expected-error {{expected ')'}} expected-note {{to match this '('}}
85 #pragma omp target if (argc argc) // expected-error {{expected ')'}} expected-note {{to match this '('}}
87 #pragma omp target if (1 0) // expected-error {{expected ')'}} expected-note {{to match this '('}}
89 #pragma omp target if(if(tmain(argc, argv) // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
91 #pragma omp target if(target : // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
93 #pragma omp target if(target : argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
95 #pragma omp target if(target : argc/z)
97 #pragma omp target if(target : argc) if (for:argc) // expected-error {{directive name modifier 'for' is not allowed for '#pragma omp target'}}
99 #pragma omp target if(target : argc) if (target:argc) // expected-error {{directive '#pragma omp target' cannot contain more than one 'if' clause with 'target' name modifier}}
101 #pragma omp target if(target : argc) if (argc) // expected-error {{no more 'if' clause is allowed}} expected-note {{previous clause with directive name modifier specified here}}
104 return tmain(argc
, argv
);