OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:threadvar
(Results
1 - 3
of
3
) 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}}
78
#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}}
Completed in 93 milliseconds