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