[OpenMP] Use 0 instead of false in the test bug63197.c
authorShilei Tian <i@tianshilei.me>
Wed, 14 Jun 2023 15:51:51 +0000 (11:51 -0400)
committerShilei Tian <i@tianshilei.me>
Wed, 14 Jun 2023 15:51:51 +0000 (11:51 -0400)
openmp/runtime/test/parallel/bug63197.c

index 8883443783b7a0268a64808b05a83d069020d483..bba21de43deb42e5d54e30be39ce50317e00cf4e 100644 (file)
@@ -4,7 +4,7 @@
 #include <stdio.h>
 
 int main(int argc, char *argv[]) {
-#pragma omp parallel num_threads(3) if (false)
+#pragma omp parallel num_threads(3) if(0)
 #pragma omp single
   { printf("BBB %2d\n", omp_get_num_threads()); }