repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[llvm] Stop including unordered_map (NFC)
[llvm-project.git]
/
openmp
/
runtime
/
test
/
parallel
/
bug63197.c
blob
c60f400b19a8f18608aed05e984e92cdbc24c35d
1
// RUN: %libomp-compile-and-run | FileCheck %s
2
3
#include <omp.h>
4
#include <stdio.h>
5
6
int
main
(
int
argc
,
char
*
argv
[]) {
7
#pragma omp parallel num_threads(3) if (0)
8
#pragma omp single
9
{
printf
(
"BBB %2d
\n
"
,
omp_get_num_threads
()); }
10
11
#pragma omp parallel
12
#pragma omp single
13
{
14
if
(
omp_get_num_threads
() !=
3
)
15
printf
(
"PASS
\n
"
);
16
}
17
return
0
;
18
}
19
20
// CHECK: PASS