diff options
Diffstat (limited to 'test/OpenMP/target_if_messages.cpp')
-rw-r--r-- | test/OpenMP/target_if_messages.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/OpenMP/target_if_messages.cpp b/test/OpenMP/target_if_messages.cpp index 5193b64..4ee7302 100644 --- a/test/OpenMP/target_if_messages.cpp +++ b/test/OpenMP/target_if_messages.cpp @@ -22,6 +22,12 @@ int tmain(T argc, S **argv) { #pragma omp target if (argv[1]=2) // expected-error {{expected ')'}} expected-note {{to match this '('}} #pragma omp target if (argc argc) // expected-error {{expected ')'}} expected-note {{to match this '('}} #pragma omp target if(argc) + #pragma omp target if(target : // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} + #pragma omp target if(target : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} + #pragma omp target if(target : argc) + #pragma omp target if(target : argc) if (for:argc) // expected-error {{directive name modifier 'for' is not allowed for '#pragma omp target'}} + #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}} + #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}} foo(); return 0; @@ -40,6 +46,12 @@ int main(int argc, char **argv) { #pragma omp target if (argc argc) // expected-error {{expected ')'}} expected-note {{to match this '('}} #pragma omp target if (1 0) // expected-error {{expected ')'}} expected-note {{to match this '('}} #pragma omp target if(if(tmain(argc, argv) // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} + #pragma omp target if(target : // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} + #pragma omp target if(target : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} + #pragma omp target if(target : argc) + #pragma omp target if(target : argc) if (for:argc) // expected-error {{directive name modifier 'for' is not allowed for '#pragma omp target'}} + #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}} + #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}} foo(); return tmain(argc, argv); |