[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)
commit84d0b3efee509e4c820096772981adeb6568978f
tree7f24a3a2722c4f05eef7c831cca58f09281d18cc
parentefbce587759f70ad651c98b93e9590751b0e3ce9
[OPENMP] Parsing and sema analysis for 'omp parallel sections' directive.

llvm-svn: 212516
38 files changed:
clang/include/clang-c/Index.h
clang/include/clang/AST/DataRecursiveASTVisitor.h
clang/include/clang/AST/RecursiveASTVisitor.h
clang/include/clang/AST/StmtOpenMP.h
clang/include/clang/Basic/DiagnosticSemaKinds.td
clang/include/clang/Basic/OpenMPKinds.def
clang/include/clang/Basic/StmtNodes.td
clang/include/clang/Sema/Sema.h
clang/include/clang/Serialization/ASTBitCodes.h
clang/lib/AST/Stmt.cpp
clang/lib/AST/StmtPrinter.cpp
clang/lib/AST/StmtProfile.cpp
clang/lib/Basic/OpenMPKinds.cpp
clang/lib/CodeGen/CGStmt.cpp
clang/lib/CodeGen/CGStmtOpenMP.cpp
clang/lib/CodeGen/CodeGenFunction.h
clang/lib/Parse/ParseOpenMP.cpp
clang/lib/Sema/SemaOpenMP.cpp
clang/lib/Sema/TreeTransform.h
clang/lib/Serialization/ASTReaderStmt.cpp
clang/lib/Serialization/ASTWriterStmt.cpp
clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
clang/test/OpenMP/nesting_of_regions.cpp
clang/test/OpenMP/parallel_sections_ast_print.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_sections_copyin_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_sections_default_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_sections_firstprivate_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_sections_if_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_sections_lastprivate_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_sections_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_sections_misc_messages.c [new file with mode: 0644]
clang/test/OpenMP/parallel_sections_num_threads_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_sections_private_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_sections_proc_bind_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_sections_reduction_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_sections_shared_messages.cpp [new file with mode: 0644]
clang/tools/libclang/CIndex.cpp
clang/tools/libclang/CXCursor.cpp