blob: 4816c186591658a67825c7ff5a3d9a5d74eefa9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// RUN: c-index-test -test-load-source local %s -fopenmp=libomp -fopenmp-version=60 | FileCheck %s
void test() {
#pragma omp stripe sizes(5)
for (int i = 0; i < 65; i += 1)
;
}
// CHECK: openmp-stripe.c:4:1: OMPStripeDirective= Extent=[4:1 - 4:28]
// CHECK: openmp-stripe.c:4:26: IntegerLiteral= Extent=[4:26 - 4:27]
// CHECK: openmp-stripe.c:5:3: ForStmt= Extent=[5:3 - 6:6]
|