Set num_threads to 50 on 32-bit hppa in two libgomp loop tests
[official-gcc.git] / libgomp / testsuite / libgomp.c-c++-common / unary-ptr-1.c
blob3623b2695763830803090a2a247034428ec78240
1 #include <assert.h>
3 int main (int argc, char *argv[])
5 int y = 0;
6 int *x = &y;
8 #pragma omp target map(*x)
10 (*x)++;
13 assert (y == 1);
15 return 0;