brintos

brintos / llvm-project-archived public Read only

0
0
Text · 166 B · 2f1f67f Raw
16 lines · c
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