xref: /minix3/external/bsd/llvm/dist/clang/test/OpenMP/openmp_common.c (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc // RUN: %clang_cc1 -verify -fopenmp=libiomp5 -ferror-limit 100 -o - %s
2f4a2713aSLionel Sambuc 
3f4a2713aSLionel Sambuc #pragma omp // expected-error {{expected an OpenMP directive}}
4f4a2713aSLionel Sambuc #pragma omp unknown_directive // expected-error {{expected an OpenMP directive}}
5f4a2713aSLionel Sambuc 
foo()6f4a2713aSLionel Sambuc void foo() {
7f4a2713aSLionel Sambuc #pragma omp // expected-error {{expected an OpenMP directive}}
8f4a2713aSLionel Sambuc #pragma omp unknown_directive // expected-error {{expected an OpenMP directive}}
9f4a2713aSLionel Sambuc }
10