diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-12-09 04:35:57 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-12-09 04:35:57 +0000 |
commit | 2d5c6ddf74296d38d0f194420be159687568026e (patch) | |
tree | 4ee6bbdb6860a8688c516db544ceadebcadbbf30 /clang/include/clang-c | |
parent | 12f79291771d6f4d2941afbee3028dc8ad2e232d (diff) | |
download | bcm5719-llvm-2d5c6ddf74296d38d0f194420be159687568026e.tar.gz bcm5719-llvm-2d5c6ddf74296d38d0f194420be159687568026e.zip |
Revert r255001, "Add parse and sema for OpenMP distribute directive and all its clauses excluding dist_schedule."
It causes memory leak. Some tests in test/OpenMP would fail.
llvm-svn: 255094
Diffstat (limited to 'clang/include/clang-c')
-rw-r--r-- | clang/include/clang-c/Index.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index bd2116431ba..5b846a518d3 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2264,11 +2264,7 @@ enum CXCursorKind { */ CXCursor_OMPTaskLoopSimdDirective = 259, - /** \brief OpenMP distribute directive. - */ - CXCursor_OMPDistributeDirective = 260, - - CXCursor_LastStmt = CXCursor_OMPDistributeDirective, + CXCursor_LastStmt = CXCursor_OMPTaskLoopSimdDirective, /** * \brief Cursor that represents the translation unit itself. |