Sign in
gnu
/
gcc
/
trunk
/
.
/
libgomp
/
testsuite
/
libgomp.c-c++-common
/
target-10.c
blob: 4ad707c565815100f54837e2f46c127702ae7cd9 [
file
] [
log
] [
blame
]
/* { dg-do run } */
// { dg-additional-options "-Wno-deprecated-openmp" }
#pragma
omp declare target
extern
int
v
;
#pragma
omp end declare target
int
v
;
int
main
()
{
#pragma
omp target update to
(
v
)
return
0
;
}