brintos

brintos / llvm-project-archived public Read only

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