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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
OpenMP
/
PR44893.c
blob
2f1f67fd4aa9803adc3cfa453f682a28e027a554
1
// RUN: %clang -fopenmp -O -g -x c %s -S -disable-output -o %t
2
3
// Do not crash ;)
4
5
void
foo
(
void
)
6
{
7
#pragma omp critical
8
;
9
}
10
11
void
bar
(
void
)
12
{
13
foo
();
14
foo
();
15
}