]> granicus.if.org Git - clang/commit
[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)
commit46c5afbd7070bb8b4329331f5bac3d31078e3d01
treea86375d52d3da44e2fa6f0529615716e4d31de8e
parent5bb28629c0fba013b1342ddf6a7e0708cbc67fb4
[OPENMP] Initial support for '#pragma omp for'.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211096 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