2020-08-28 03:35:36 +08:00
|
|
|
// RUN: %clang_cc1 -verify=expected,ge40 -fopenmp-version=45 -fopenmp -ferror-limit 100 -o - %s -Wuninitialized
|
2019-07-08 23:45:24 +08:00
|
|
|
// RUN: %clang_cc1 -verify=expected,ge40 -fopenmp-simd -ferror-limit 100 -o - %s -Wuninitialized
|
2020-08-28 03:35:36 +08:00
|
|
|
// RUN: %clang_cc1 -verify=expected,ge40 -fopenmp -ferror-limit 100 -o - %s -Wuninitialized
|
2019-07-08 23:45:24 +08:00
|
|
|
// RUN: %clang_cc1 -verify=expected,ge40 -fopenmp-version=40 -fopenmp -ferror-limit 100 -o - %s -Wuninitialized
|
|
|
|
// RUN: %clang_cc1 -verify -fopenmp-version=31 -fopenmp -ferror-limit 100 -o - %s -Wuninitialized
|
|
|
|
// RUN: %clang_cc1 -verify -fopenmp-version=30 -fopenmp -ferror-limit 100 -o - %s -Wuninitialized
|
2020-07-13 11:19:40 +08:00
|
|
|
// RUN: %clang_cc1 -verify=expected,ge40 -fopenmp-version=51 -fopenmp -DOMP51 -ferror-limit 100 -o - %s -Wuninitialized
|
|
|
|
// RUN: %clang_cc1 -verify=expected,ge40 -fopenmp-version=51 -fopenmp-simd -DOMP51 -ferror-limit 100 -o - %s -Wuninitialized
|
2017-12-30 02:07:07 +08:00
|
|
|
|
2013-07-19 11:13:43 +08:00
|
|
|
void foo();
|
|
|
|
|
2020-07-13 11:19:40 +08:00
|
|
|
namespace {
|
|
|
|
static int y = 0;
|
|
|
|
}
|
|
|
|
static int x = 0;
|
|
|
|
|
2013-07-19 11:13:43 +08:00
|
|
|
int main(int argc, char **argv) {
|
2019-01-05 06:11:31 +08:00
|
|
|
const int c = 0;
|
|
|
|
|
2013-07-19 11:13:43 +08:00
|
|
|
#pragma omp parallel default // expected-error {{expected '(' after 'default'}}
|
2020-07-13 11:19:40 +08:00
|
|
|
#pragma omp parallel default( // expected-error {{expected 'none', 'shared' or 'firstprivate' in OpenMP clause 'default'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
|
|
|
|
#pragma omp parallel default() // expected-error {{expected 'none', 'shared' or 'firstprivate' in OpenMP clause 'default'}}
|
|
|
|
#pragma omp parallel default(none // expected-error {{expected ')'}} expected-note {{to match this '('}}
|
|
|
|
#pragma omp parallel default(shared), default(shared) // expected-error {{directive '#pragma omp parallel' cannot contain more than one 'default' clause}}
|
|
|
|
#pragma omp parallel default(x) // expected-error {{expected 'none', 'shared' or 'firstprivate' in OpenMP clause 'default'}}
|
2013-07-19 11:13:43 +08:00
|
|
|
foo();
|
|
|
|
|
2019-05-10 02:14:57 +08:00
|
|
|
#pragma omp parallel default(none) // expected-note {{explicit data sharing attribute requested here}}
|
2013-09-07 02:03:48 +08:00
|
|
|
++argc; // expected-error {{variable 'argc' must have explicitly specified data sharing attributes}}
|
|
|
|
|
2019-05-10 02:14:57 +08:00
|
|
|
#pragma omp parallel default(none) // expected-note {{explicit data sharing attribute requested here}}
|
2013-09-07 02:03:48 +08:00
|
|
|
#pragma omp parallel default(shared)
|
2018-10-30 04:17:42 +08:00
|
|
|
++argc; // expected-error {{variable 'argc' must have explicitly specified data sharing attributes}}
|
2019-01-05 06:11:31 +08:00
|
|
|
|
2019-05-10 02:14:57 +08:00
|
|
|
#pragma omp parallel default(none) // ge40-note {{explicit data sharing attribute requested here}}
|
2019-01-05 06:11:31 +08:00
|
|
|
(void)c; // ge40-error {{variable 'c' must have explicitly specified data sharing attributes}}
|
2020-07-13 11:19:40 +08:00
|
|
|
|
|
|
|
#ifdef OMP51
|
|
|
|
#pragma omp parallel default(firstprivate) // expected-note 2 {{explicit data sharing attribute requested here}}
|
|
|
|
{
|
|
|
|
++x; // expected-error {{variable 'x' must have explicitly specified data sharing attributes}}
|
|
|
|
++y; // expected-error {{variable 'y' must have explicitly specified data sharing attributes}}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-07-19 11:13:43 +08:00
|
|
|
return 0;
|
|
|
|
}
|