PR testsuite/85483: Move aarch64/sve/vcond_1.c test to g++.dg/other/
[official-gcc.git] / libgomp / testsuite / libgomp.c / thread-limit-3.c
blobaf9bd7887abdc0915d8fb775b8db68d79a42db7f
1 #include <stdlib.h>
2 #include <omp.h>
4 int
5 main ()
7 #pragma omp target if (0)
8 #pragma omp teams thread_limit (1)
9 if (omp_get_thread_limit () != 1)
10 abort ();
11 return 0;