diff options
author | Diana Picus <diana.picus@linaro.org> | 2016-08-18 09:25:07 +0000 |
---|---|---|
committer | Diana Picus <diana.picus@linaro.org> | 2016-08-18 09:25:07 +0000 |
commit | 8b44bbc0778d5452bf69fc6ddf55ac0c15ad85e2 (patch) | |
tree | 630bcc6ae9fc56ff1683fda07de7843f0e34fdd8 /clang/include/clang-c | |
parent | 2402dd1e8251128b6893a5a42262604e9b2a406f (diff) | |
download | bcm5719-llvm-8b44bbc0778d5452bf69fc6ddf55ac0c15ad85e2.tar.gz bcm5719-llvm-8b44bbc0778d5452bf69fc6ddf55ac0c15ad85e2.zip |
Revert "[OpenMP] Sema and parsing for 'teams distribute simd’ pragma"
This reverts commit r279003 as it breaks some of our buildbots (e.g.
clang-cmake-aarch64-quick, clang-x86_64-linux-selfhost-modules).
The error is in OpenMP/teams_distribute_simd_ast_print.cpp:
clang: /home/buildslave/buildslave/clang-cmake-aarch64-quick/llvm/include/llvm/ADT/DenseMap.h:527:
bool llvm::DenseMapBase<DerivedT, KeyT, ValueT, KeyInfoT, BucketT>::LookupBucketFor(const LookupKeyT&, const BucketT*&) const
[with LookupKeyT = clang::Stmt*; DerivedT = llvm::DenseMap<clang::Stmt*, long unsigned int>;
KeyT = clang::Stmt*; ValueT = long unsigned int;
KeyInfoT = llvm::DenseMapInfo<clang::Stmt*>;
BucketT = llvm::detail::DenseMapPair<clang::Stmt*, long unsigned int>]:
Assertion `!KeyInfoT::isEqual(Val, EmptyKey) && !KeyInfoT::isEqual(Val, TombstoneKey) &&
"Empty/Tombstone value shouldn't be inserted into map!"' failed.
llvm-svn: 279045
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 b00df33683b..170e4e7fad5 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2333,11 +2333,7 @@ enum CXCursorKind { */ CXCursor_OMPTeamsDistributeDirective = 271, - /** \brief OpenMP teams distribute simd directive. - */ - CXCursor_OMPTeamsDistributeSimdDirective = 272, - - CXCursor_LastStmt = CXCursor_OMPTeamsDistributeSimdDirective, + CXCursor_LastStmt = CXCursor_OMPTeamsDistributeDirective, /** * \brief Cursor that represents the translation unit itself. |