[OPENMP] Initial support for '#pragma omp for'.
authorAlexey Bataev <a.bataev@hotmail.com>
Tue, 17 Jun 2014 11:49:22 +0000 (11:49 +0000)
committerAlexey Bataev <a.bataev@hotmail.com>
Tue, 17 Jun 2014 11:49:22 +0000 (11:49 +0000)
commitc77dd5257a9388a34d4bc7b0105be88bc456b192
tree8010c6b96d7ef452d399fa708e25e781a387d210
parentd5531f72dc1d4c85997a13530fc783c8dfaab25c
[OPENMP] Initial support for '#pragma omp for'.

llvm-svn: 211096
34 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/OpenMPKinds.def
clang/include/clang/Basic/OpenMPKinds.h
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/for_ast_print.cpp [new file with mode: 0644]
clang/test/OpenMP/for_collapse_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/for_firstprivate_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/for_lastprivate_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/for_loop_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/for_misc_messages.c [new file with mode: 0644]
clang/test/OpenMP/for_private_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/for_reduction_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_reduction_messages.cpp
clang/test/OpenMP/simd_loop_messages.cpp
clang/tools/libclang/CIndex.cpp
clang/tools/libclang/CXCursor.cpp