projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fcc9fa5
)
[OpenMP] Use 0 instead of false in the test bug63197.c
author
Shilei Tian
<i@tianshilei.me>
Wed, 14 Jun 2023 15:51:51 +0000
(11:51 -0400)
committer
Shilei Tian
<i@tianshilei.me>
Wed, 14 Jun 2023 15:51:51 +0000
(11:51 -0400)
openmp/runtime/test/parallel/bug63197.c
patch
|
blob
|
history
diff --git
a/openmp/runtime/test/parallel/bug63197.c
b/openmp/runtime/test/parallel/bug63197.c
index 8883443783b7a0268a64808b05a83d069020d483..bba21de43deb42e5d54e30be39ce50317e00cf4e 100644
(file)
--- 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()); }