]> granicus.if.org Git - clang/commit
[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)
commitb23263a1ac3e4c6080c2b1f56cc42d2f24faf856
treef26d7c1d5fa22602e10da6c02436ce553ffc78fc
parent6356f564c351af8b22e7c2699d52e2062ae9e76e
[OPENMP] Initial support for '#pragma omp for' (fixed incompatibility with MSVC).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211140 91177308-0d34-0410-b5e6-96231b3b80d8
34 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/OpenMPKinds.def
include/clang/Basic/OpenMPKinds.h
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/for_ast_print.cpp [new file with mode: 0644]
test/OpenMP/for_collapse_messages.cpp [new file with mode: 0644]
test/OpenMP/for_firstprivate_messages.cpp [new file with mode: 0644]
test/OpenMP/for_lastprivate_messages.cpp [new file with mode: 0644]
test/OpenMP/for_loop_messages.cpp [new file with mode: 0644]
test/OpenMP/for_misc_messages.c [new file with mode: 0644]
test/OpenMP/for_private_messages.cpp [new file with mode: 0644]
test/OpenMP/for_reduction_messages.cpp [new file with mode: 0644]
test/OpenMP/parallel_reduction_messages.cpp
test/OpenMP/simd_loop_messages.cpp
tools/libclang/CIndex.cpp
tools/libclang/CXCursor.cpp