aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Serialization/ASTWriterStmt.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2025-02-11 12:39:00 -0800
committerKazu Hirata <kazu@google.com>2025-02-11 12:39:01 -0800
commit67e1e98811ccb438e951ae59dd3041a2baf84437 (patch)
tree4c5ab8fb4ef54f21f46fea043db43b222f24cc6a /clang/lib/Serialization/ASTWriterStmt.cpp
parent2cf6663d3c86b065edeb693815e6a4b325045cc2 (diff)
downloadllvm-67e1e98811ccb438e951ae59dd3041a2baf84437.zip
llvm-67e1e98811ccb438e951ae59dd3041a2baf84437.tar.gz
llvm-67e1e98811ccb438e951ae59dd3041a2baf84437.tar.bz2
Revert "[Clang] [OpenMP] Add support for '#pragma omp stripe'. (#119891)"
This reverts commit 070f84ebc89b11df616a83a56df9ac56efbab783. Buildbot failure: https://lab.llvm.org/buildbot/#/builders/51/builds/10694
Diffstat (limited to 'clang/lib/Serialization/ASTWriterStmt.cpp')
-rw-r--r--clang/lib/Serialization/ASTWriterStmt.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/clang/lib/Serialization/ASTWriterStmt.cpp b/clang/lib/Serialization/ASTWriterStmt.cpp
index 6a779f1..e5caf3d 100644
--- a/clang/lib/Serialization/ASTWriterStmt.cpp
+++ b/clang/lib/Serialization/ASTWriterStmt.cpp
@@ -2459,11 +2459,6 @@ void ASTStmtWriter::VisitOMPTileDirective(OMPTileDirective *D) {
Code = serialization::STMT_OMP_TILE_DIRECTIVE;
}
-void ASTStmtWriter::VisitOMPStripeDirective(OMPStripeDirective *D) {
- VisitOMPLoopTransformationDirective(D);
- Code = serialization::STMP_OMP_STRIPE_DIRECTIVE;
-}
-
void ASTStmtWriter::VisitOMPUnrollDirective(OMPUnrollDirective *D) {
VisitOMPLoopTransformationDirective(D);
Code = serialization::STMT_OMP_UNROLL_DIRECTIVE;