blob: 07b879b831e791831f0f609b25e4239d46e6cc1b [file] [log] [blame]
// 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();
}