Sign in
gnu
/
gcc
/
4212a6a3e44f870412d9025eeb323fd4f50a61da
/
.
/
libgomp
/
testsuite
/
libgomp.c
/
omp-single-3.c
blob: 5a06532448eb90b21d7d30c81f406a8303fb54a5 [
file
] [
log
] [
blame
]
extern
void
abort
(
void
);
void
single
(
int
a
,
int
b
)
{
#pragma
omp single copyprivate
(
a
)
copyprivate
(
b
)
{
a
=
b
=
5
;
}
if
(
a
!=
b
)
abort
();
}
int
main
()
{
#pragma
omp parallel
single
(
1
,
2
);
return
0
;
}