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/lib/Serialization/ASTWriterStmt.cpp | |
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/lib/Serialization/ASTWriterStmt.cpp')
-rw-r--r-- | clang/lib/Serialization/ASTWriterStmt.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/clang/lib/Serialization/ASTWriterStmt.cpp b/clang/lib/Serialization/ASTWriterStmt.cpp index 6e21d540a47..19b1e20d369 100644 --- a/clang/lib/Serialization/ASTWriterStmt.cpp +++ b/clang/lib/Serialization/ASTWriterStmt.cpp @@ -2518,12 +2518,6 @@ void ASTStmtWriter::VisitOMPTeamsDistributeDirective( Code = serialization::STMT_OMP_TEAMS_DISTRIBUTE_DIRECTIVE; } -void ASTStmtWriter::VisitOMPTeamsDistributeSimdDirective( - OMPTeamsDistributeSimdDirective *D) { - VisitOMPLoopDirective(D); - Code = serialization::STMT_OMP_TEAMS_DISTRIBUTE_SIMD_DIRECTIVE; -} - //===----------------------------------------------------------------------===// // ASTWriter Implementation //===----------------------------------------------------------------------===// |