]> granicus.if.org Git - clang/commit
[OPENMP] Add support for 'omp parallel for' directive.
authorAlexey Bataev <a.bataev@hotmail.com>
Thu, 18 Jun 2015 10:10:12 +0000 (10:10 +0000)
committerAlexey Bataev <a.bataev@hotmail.com>
Thu, 18 Jun 2015 10:10:12 +0000 (10:10 +0000)
commit6ccf1a9d0fa80cdd647cf0c29c993d815305f1ef
tree0e405bca94768a3e5ce7098b86327bff2e4753a9
parent7b2b09b3070ab7ebaaa5103de1ddc88ad4805ce8
[OPENMP] Add support for 'omp parallel for' directive.

Codegen for this directive is a combined codegen for 'omp parallel' region with 'omp for simd' region inside. Clauses are supported.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@240006 91177308-0d34-0410-b5e6-96231b3b80d8
include/clang/AST/OpenMPClause.h
lib/CodeGen/CGStmtOpenMP.cpp
lib/CodeGen/CodeGenFunction.h
lib/Sema/SemaOpenMP.cpp
test/OpenMP/parallel_for_simd_codegen.cpp [new file with mode: 0644]