OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:threadvar
(Results
1 - 4
of
4
) sorted by null
/external/clang/test/OpenMP/
parallel_private_messages.cpp
41
int
threadvar
;
variable
42
#pragma omp threadprivate(
threadvar
) // expected-note {{defined as threadprivate or thread local}}
74
#pragma omp parallel private(
threadvar
, B::x) // expected-error 2 {{threadprivate or thread local variable cannot be private}}
task_private_messages.cpp
45
int
threadvar
;
variable
46
#pragma omp threadprivate(
threadvar
) // expected-note {{defined as threadprivate or thread local}}
83
#pragma omp task private(
threadvar
, B::x) // expected-error 2 {{threadprivate or thread local variable cannot be private}}
teams_private_messages.cpp
41
int
threadvar
;
variable
42
#pragma omp threadprivate(
threadvar
) // expected-note {{defined as threadprivate or thread local}}
105
#pragma omp teams private(
threadvar
, B::x) // expected-error 2 {{threadprivate or thread local variable cannot be private}}
target_parallel_private_messages.cpp
27
int
threadvar
;
variable
28
#pragma omp threadprivate(
threadvar
) // expected-note {{defined as threadprivate or thread local}} expected-note 1 {{defined as threadprivate or thread local}}
97
#pragma omp target parallel private(
threadvar
, B::x) // expected-error 2 {{threadprivate or thread local variable cannot be private}}
184
#pragma omp target parallel private(
threadvar
, B::x) // expected-error 2 {{threadprivate or thread local variable cannot be private}}
Completed in 508 milliseconds