[Openmp-commits] [openmp] b14dc71 - [OpenMP] Use 0 instead of false in the test bug63197.c
Shilei Tian via Openmp-commits
openmp-commits at lists.llvm.org
Wed Jun 14 08:52:12 PDT 2023
Author: Shilei Tian
Date: 2023-06-14T11:51:51-04:00
New Revision: b14dc71c5e5f3b5e975daa75f7ee0c12900880c9
URL: https://github.com/llvm/llvm-project/commit/b14dc71c5e5f3b5e975daa75f7ee0c12900880c9
DIFF: https://github.com/llvm/llvm-project/commit/b14dc71c5e5f3b5e975daa75f7ee0c12900880c9.diff
LOG: [OpenMP] Use 0 instead of false in the test bug63197.c
Added:
Modified:
openmp/runtime/test/parallel/bug63197.c
Removed:
################################################################################
diff --git a/openmp/runtime/test/parallel/bug63197.c b/openmp/runtime/test/parallel/bug63197.c
index 8883443783b7a..bba21de43deb4 100644
--- a/openmp/runtime/test/parallel/bug63197.c
+++ b/openmp/runtime/test/parallel/bug63197.c
@@ -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()); }
More information about the Openmp-commits
mailing list