]> granicus.if.org Git - clang/commit
[OPENMP 4.5] Parsing/sema support for 'omp taskloop simd' directive.
authorAlexey Bataev <a.bataev@hotmail.com>
Thu, 3 Dec 2015 09:40:15 +0000 (09:40 +0000)
committerAlexey Bataev <a.bataev@hotmail.com>
Thu, 3 Dec 2015 09:40:15 +0000 (09:40 +0000)
commitd50b8b580df651f3786613bff826811cfcd39531
treefda5707b86b808e3f7b2e6bb7c5aa7065c3d71a8
parent1f64d371062ab1343fe2a22e119186e5ca874135
[OPENMP 4.5] Parsing/sema support for 'omp taskloop simd' directive.

OpenMP 4.5 adds directive 'taskloop simd'. Patch adds parsing/sema analysis for 'taskloop simd' directive and its clauses.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@254597 91177308-0d34-0410-b5e6-96231b3b80d8
37 files changed:
include/clang-c/Index.h
include/clang/AST/RecursiveASTVisitor.h
include/clang/AST/StmtOpenMP.h
include/clang/Basic/OpenMPKinds.def
include/clang/Basic/OpenMPKinds.h
include/clang/Basic/StmtNodes.td
include/clang/Sema/Sema.h
include/clang/Serialization/ASTBitCodes.h
lib/AST/StmtOpenMP.cpp
lib/AST/StmtPrinter.cpp
lib/AST/StmtProfile.cpp
lib/Basic/OpenMPKinds.cpp
lib/CodeGen/CGStmt.cpp
lib/CodeGen/CGStmtOpenMP.cpp
lib/CodeGen/CodeGenFunction.h
lib/Parse/ParseOpenMP.cpp
lib/Sema/SemaOpenMP.cpp
lib/Sema/TreeTransform.h
lib/Serialization/ASTReaderStmt.cpp
lib/Serialization/ASTWriterStmt.cpp
lib/StaticAnalyzer/Core/ExprEngine.cpp
test/OpenMP/taskloop_final_messages.cpp [new file with mode: 0644]
test/OpenMP/taskloop_simd_aligned_messages.cpp [new file with mode: 0644]
test/OpenMP/taskloop_simd_ast_print.cpp [new file with mode: 0644]
test/OpenMP/taskloop_simd_collapse_messages.cpp [new file with mode: 0644]
test/OpenMP/taskloop_simd_final_messages.cpp [new file with mode: 0644]
test/OpenMP/taskloop_simd_firstprivate_messages.cpp [new file with mode: 0644]
test/OpenMP/taskloop_simd_lastprivate_messages.cpp [new file with mode: 0644]
test/OpenMP/taskloop_simd_linear_messages.cpp [new file with mode: 0644]
test/OpenMP/taskloop_simd_loop_messages.cpp [new file with mode: 0644]
test/OpenMP/taskloop_simd_misc_messages.c [new file with mode: 0644]
test/OpenMP/taskloop_simd_priority_messages.cpp [new file with mode: 0644]
test/OpenMP/taskloop_simd_private_messages.cpp [new file with mode: 0644]
test/OpenMP/taskloop_simd_safelen_messages.cpp [new file with mode: 0644]
test/OpenMP/taskloop_simd_simdlen_messages.cpp [new file with mode: 0644]
tools/libclang/CIndex.cpp
tools/libclang/CXCursor.cpp