blob: fe7ccfa90a5831a290840fe9d823b8865f68cb7d (
plain)
1
2
3
4
5
6
7
|
// 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();
}
|