Skip to content

Commit 8476b58

Browse files
committed
Clang-format
1 parent 87565b6 commit 8476b58

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

clang/lib/CIR/CodeGen/CIRGenOpenACCClause.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ class OpenACCClauseCIREmitter final
627627
}
628628
}
629629

630-
void VisitHostClause(const OpenACCHostClause &clause){
630+
void VisitHostClause(const OpenACCHostClause &clause) {
631631
if constexpr (isOneOfTypes<OpTy, mlir::acc::UpdateOp>) {
632632
for (const Expr *var : clause.getVarList())
633633
addDataOperand<mlir::acc::GetDevicePtrOp, mlir::acc::UpdateHostOp>(
@@ -637,7 +637,8 @@ class OpenACCClauseCIREmitter final
637637
llvm_unreachable("Unknown construct kind in VisitHostClause");
638638
}
639639
}
640-
void VisitDeviceClause(const OpenACCDeviceClause &clause){
640+
641+
void VisitDeviceClause(const OpenACCDeviceClause &clause) {
641642
if constexpr (isOneOfTypes<OpTy, mlir::acc::UpdateOp>) {
642643
for (const Expr *var : clause.getVarList())
643644
addDataOperand<mlir::acc::UpdateDeviceOp>(

0 commit comments

Comments
 (0)