Load new scanlang.exp
[gcc.git] / libgomp / testsuite / libgomp.c / target-10.c
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 }