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