bolt/deps/llvm-18.1.8/clang/test/OpenMP/PR44893.c

16 lines
166 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// 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();
}