File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -5624,7 +5624,7 @@ class OMPTileDirective final : public OMPLoopTransformationDirective {
56245624
56255625// / This represents the '#pragma omp stripe' loop transformation directive.
56265626class OMPStripeDirective final : public OMPLoopTransformationDirective {
5627- friend class ASTStmtReader ;
5627+ friend class ASTStmtReader ;
56285628 friend class OMPExecutableDirective ;
56295629
56305630 // / Default list of offsets.
@@ -5648,6 +5648,7 @@ friend class ASTStmtReader;
56485648 void setTransformedStmt (Stmt *S) {
56495649 Data->getChildren ()[TransformedStmtOffset] = S;
56505650 }
5651+
56515652public:
56525653 // / Create a new AST node representation for '#pragma omp stripe'.
56535654 // /
Original file line number Diff line number Diff line change @@ -2548,7 +2548,7 @@ StmtResult Parser::ParseOpenMPExecutableDirective(
25482548 }
25492549 }
25502550
2551- if ((DKind == OMPD_tile || DKind == OMPD_stripe) &&
2551+ if ((DKind == OMPD_tile || DKind == OMPD_stripe) &&
25522552 !SeenClauses[unsigned (OMPC_sizes)]) {
25532553 Diag (Loc, diag::err_omp_required_clause)
25542554 << getOpenMPDirectiveName (DKind) << " sizes" ;
You can’t perform that action at this time.
0 commit comments