16 lines
158 B
C
16 lines
158 B
C
// RUN: %clang -fopenmp -O -g -x c %s -S -disable-output -o %t
|
|
|
|
// Do not crash ;)
|
|
|
|
void foo()
|
|
{
|
|
#pragma omp critical
|
|
;
|
|
}
|
|
|
|
void bar()
|
|
{
|
|
foo();
|
|
foo();
|
|
}
|