2019-07-08 23:45:24 +08:00
// RUN: %clang_cc1 -verify -fopenmp -fopenmp-version=45 %s -Wuninitialized
2014-09-19 16:19:49 +08:00
2019-07-08 23:45:24 +08:00
// RUN: %clang_cc1 -verify -fopenmp-simd -fopenmp-version=45 %s -Wuninitialized
2017-12-30 02:07:07 +08:00
2014-09-19 16:19:49 +08:00
void foo ( ) {
}
bool foobool ( int argc ) {
return argc ;
}
2019-07-16 22:51:46 +08:00
void xxx ( int argc ) {
int cond ; // expected-note {{initialize the variable 'cond' to silence this warning}}
# pragma omp target if(cond) // expected-warning {{variable 'cond' is uninitialized when used here}}
for ( int i = 0 ; i < 10 ; + + i )
;
}
2014-09-19 16:19:49 +08:00
struct S1 ; // expected-note {{declared here}}
template < class T , class S > // expected-note {{declared here}}
int tmain ( T argc , S * * argv ) {
2019-07-08 23:45:24 +08:00
T z ;
2014-09-19 16:19:49 +08:00
# pragma omp target if // expected-error {{expected '(' after 'if'}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if () // expected-error {{expected expression}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if (argc > 0 ? argv[1] : argv[2])
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp target' cannot contain more than one 'if' clause}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if (S) // expected-error {{'S' does not refer to a value}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if (argv[1]=2) // expected-error {{expected ')'}} expected-note {{to match this '('}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if (argc argc) // expected-error {{expected ')'}} expected-note {{to match this '('}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2019-07-08 23:45:24 +08:00
# pragma omp target if(argc+z)
2016-02-02 12:00:47 +08:00
foo ( ) ;
2015-09-03 15:23:48 +08:00
# pragma omp target if(target : // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2015-09-03 15:23:48 +08:00
# pragma omp target if(target : argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2015-09-03 15:23:48 +08:00
# pragma omp target if(target : argc)
2016-02-02 12:00:47 +08:00
foo ( ) ;
2015-09-03 15:23:48 +08:00
# pragma omp target if(target : argc) if (for:argc) // expected-error {{directive name modifier 'for' is not allowed for '#pragma omp target'}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2015-09-03 15:23:48 +08:00
# 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}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2015-09-16 01:23:56 +08:00
# 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}}
2014-09-19 16:19:49 +08:00
foo ( ) ;
return 0 ;
}
int main ( int argc , char * * argv ) {
2019-07-08 23:45:24 +08:00
int z ;
2014-09-19 16:19:49 +08:00
# pragma omp target if // expected-error {{expected '(' after 'if'}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if () // expected-error {{expected expression}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if (argc > 0 ? argv[1] : argv[2])
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp target' cannot contain more than one 'if' clause}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if (S1) // expected-error {{'S1' does not refer to a value}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if (argv[1]=2) // expected-error {{expected ')'}} expected-note {{to match this '('}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if (argc argc) // expected-error {{expected ')'}} expected-note {{to match this '('}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if (1 0) // expected-error {{expected ')'}} expected-note {{to match this '('}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2014-09-19 16:19:49 +08:00
# pragma omp target if(if(tmain(argc, argv) // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2015-09-03 15:23:48 +08:00
# pragma omp target if(target : // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2015-09-03 15:23:48 +08:00
# pragma omp target if(target : argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2019-07-08 23:45:24 +08:00
# pragma omp target if(target : argc / z)
2016-02-02 12:00:47 +08:00
foo ( ) ;
2015-09-03 15:23:48 +08:00
# pragma omp target if(target : argc) if (for:argc) // expected-error {{directive name modifier 'for' is not allowed for '#pragma omp target'}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2015-09-03 15:23:48 +08:00
# 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}}
2016-02-02 12:00:47 +08:00
foo ( ) ;
2015-09-16 01:23:56 +08:00
# 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}}
2014-09-19 16:19:49 +08:00
foo ( ) ;
return tmain ( argc , argv ) ;
}