]> granicus.if.org Git - clang/commit
[OPENMP] Initial support for 'sections' directive.
authorAlexey Bataev <a.bataev@hotmail.com>
Wed, 25 Jun 2014 11:44:49 +0000 (11:44 +0000)
committerAlexey Bataev <a.bataev@hotmail.com>
Wed, 25 Jun 2014 11:44:49 +0000 (11:44 +0000)
commit71f61a886646fca18a9dbed747ff34b0faa0dc98
tree9cf6bd28790e4ce856530984d227bf1f316c5e71
parentab6dc444704d6f49ebc9ed60cc9fec0ec034b384
[OPENMP] Initial support for 'sections' directive.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211685 91177308-0d34-0410-b5e6-96231b3b80d8
31 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/sections_ast_print.cpp [new file with mode: 0644]
test/OpenMP/sections_firstprivate_messages.cpp [new file with mode: 0644]
test/OpenMP/sections_lastprivate_messages.cpp [new file with mode: 0644]
test/OpenMP/sections_misc_messages.c [new file with mode: 0644]
test/OpenMP/sections_private_messages.cpp [new file with mode: 0644]
test/OpenMP/sections_reduction_messages.cpp [new file with mode: 0644]
tools/libclang/CIndex.cpp
tools/libclang/CXCursor.cpp