1// RUN: %clang -fopenmp -O -g -x c %s -S -disable-output -o %t2 3// Do not crash ;)4 5void foo(void)6{7#pragma omp critical8 ;9}10 11void bar(void)12{13 foo();14 foo();15}16