Skip to content

Commit d9fdc0b

Browse files
committed
Fix format.
1 parent 8abf3ea commit d9fdc0b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

clang/include/clang/AST/StmtOpenMP.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5624,7 +5624,7 @@ class OMPTileDirective final : public OMPLoopTransformationDirective {
56245624

56255625
/// This represents the '#pragma omp stripe' loop transformation directive.
56265626
class 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+
56515652
public:
56525653
/// Create a new AST node representation for '#pragma omp stripe'.
56535654
///

clang/lib/Parse/ParseOpenMP.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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";

0 commit comments

Comments
 (0)