[OPENMP] Initial support for '#pragma omp for' (fixed incompatibility with MSVC).
authorAlexey Bataev <a.bataev@hotmail.com>
Wed, 18 Jun 2014 04:14:57 +0000 (04:14 +0000)
committerAlexey Bataev <a.bataev@hotmail.com>
Wed, 18 Jun 2014 04:14:57 +0000 (04:14 +0000)
commitf29276edb7b9c85c9f521eb3e301259bee17aa33
tree5173803cd839d4c3ab843cd43945471c7296784f
parent0039f3f0607702f2d16d60addff74c67869e2144
[OPENMP] Initial support for '#pragma omp for' (fixed incompatibility with MSVC).

llvm-svn: 211140
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