blob: 7bbc5107ef672e6b15e761d16303eb7e3d344597 [file] [edit]
// Associated statement may be a compound `{ for (...) {} }` (split still finds the loop).
//
// RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -x c++ -fopenmp -fopenmp-version=60 -O0 -emit-llvm %s -o - | FileCheck %s
// CHECK-LABEL: define {{.*}} @f(
// CHECK: .split.iv
extern "C" void f(void) {
#pragma omp split counts(2, omp_fill)
{
for (int i = 0; i < 10; ++i) {
}
}
}