]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgomp/testsuite/libgomp.c/pr99555-1.c
[libgomp, nvptx] Fix hang in gomp_team_barrier_wait_end
[thirdparty/gcc.git] / libgomp / testsuite / libgomp.c / pr99555-1.c
CommitLineData
d99111fd
TS
1// PR99555 "[OpenMP/nvptx] Execution-time hang for simple nested OpenMP 'target'/'parallel'/'task' constructs"
2
3// { dg-additional-options "-O0" }
4
d99111fd
TS
5int main (void)
6{
d99111fd
TS
7#pragma omp target
8#pragma omp parallel // num_threads(1)
9#pragma omp task
10 ;
11
12 return 0;
13}