]> granicus.if.org Git - clang/commit
[OPENMP] Parsing and sema analysis for 'omp parallel sections' directive.
authorAlexey Bataev <a.bataev@hotmail.com>
Tue, 8 Jul 2014 08:12:03 +0000 (08:12 +0000)
committerAlexey Bataev <a.bataev@hotmail.com>
Tue, 8 Jul 2014 08:12:03 +0000 (08:12 +0000)
commit61d27f11f33ac717a1e8ed3fc424e33c844dc1bd
tree47aadd6aff60e6bd4b90d8b1c268bce93e2f6a29
parent9eb8a68c1b6fd88d3895d963bef304f0f77d816a
[OPENMP] Parsing and sema analysis for 'omp parallel sections' directive.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@212516 91177308-0d34-0410-b5e6-96231b3b80d8
38 files changed:
include/clang-c/Index.h
include/clang/AST/DataRecursiveASTVisitor.h
include/clang/AST/RecursiveASTVisitor.h
include/clang/AST/StmtOpenMP.h
include/clang/Basic/DiagnosticSemaKinds.td
include/clang/Basic/OpenMPKinds.def
include/clang/Basic/StmtNodes.td
include/clang/Sema/Sema.h
include/clang/Serialization/ASTBitCodes.h
lib/AST/Stmt.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/nesting_of_regions.cpp
test/OpenMP/parallel_sections_ast_print.cpp [new file with mode: 0644]
test/OpenMP/parallel_sections_copyin_messages.cpp [new file with mode: 0644]
test/OpenMP/parallel_sections_default_messages.cpp [new file with mode: 0644]
test/OpenMP/parallel_sections_firstprivate_messages.cpp [new file with mode: 0644]
test/OpenMP/parallel_sections_if_messages.cpp [new file with mode: 0644]
test/OpenMP/parallel_sections_lastprivate_messages.cpp [new file with mode: 0644]
test/OpenMP/parallel_sections_messages.cpp [new file with mode: 0644]
test/OpenMP/parallel_sections_misc_messages.c [new file with mode: 0644]
test/OpenMP/parallel_sections_num_threads_messages.cpp [new file with mode: 0644]
test/OpenMP/parallel_sections_private_messages.cpp [new file with mode: 0644]
test/OpenMP/parallel_sections_proc_bind_messages.cpp [new file with mode: 0644]
test/OpenMP/parallel_sections_reduction_messages.cpp [new file with mode: 0644]
test/OpenMP/parallel_sections_shared_messages.cpp [new file with mode: 0644]
tools/libclang/CIndex.cpp
tools/libclang/CXCursor.cpp