Mercurial > hg > CbC > CbC_llvm
view clang/test/Index/openmp-tile.c @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | 1f2b6ac9f198 |
children |
line wrap: on
line source
// RUN: c-index-test -test-load-source local %s -fopenmp=libomp | FileCheck %s void test() { #pragma omp tile sizes(5) for (int i = 0; i < 65; i += 1) ; } // CHECK: openmp-tile.c:4:1: OMPTileDirective= Extent=[4:1 - 4:26] // CHECK: openmp-tile.c:4:24: IntegerLiteral= Extent=[4:24 - 4:25] // CHECK: openmp-tile.c:5:3: ForStmt= Extent=[5:3 - 6:6]