[SimplifyCFG] Replace unreachable switch lookup table holes with poison (#94990)
[llvm-project.git] / openmp / libompd / test / api_tests / test_ompd_get_task_in_parallel.c
blob0bd335960b2f52e259b96d768dca91c844d77f02
1 // RUN: %gdb-compile 2>&1 | tee %t.compile
2 // RUN: %gdb-test -x %s.cmd %t 2>&1 | tee %t.out | FileCheck %s
4 #include <omp.h>
5 #include <stdio.h>
7 int main() {
8 omp_set_num_threads(2);
9 #pragma omp parallel
10 { printf("Parallel level 1, thread num = %d.\n", omp_get_thread_num()); }
11 return 0;
14 // CHECK-NOT: Failed
15 // CHECK-NOT: Skip