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

8 lines
215 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 -emit-llvm -fopenmp -disable-llvm-passes %s -o /dev/null -verify=expected
// expected-error@+2 {{cannot compile this OpenMP dispatch directive yet}}
void a(){
#pragma omp dispatch
a();
}