repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR rtl-optimization/77919
[official-gcc.git]
/
libgomp
/
testsuite
/
libgomp.c
/
target-10.c
blob
bc66880b6afc36da460abf36bff5078039121ee7
1
/* { dg-do run } */
2
3
#pragma omp declare target
4
extern
int
v
;
5
#pragma omp end declare target
6
7
int
v
;
8
9
int
10
main
()
11
{
12
#pragma omp target update to(v)
13
return
0
;
14
}