@@ -1331,7 +1331,8 @@ static void genCombiner(fir::FirOpBuilder &builder, mlir::Location loc,
13311331 } else if (allConstantBound) {
13321332 // Use the constant bound directly in the combiner region so they do not
13331333 // need to be passed as block argument.
1334- assert (!bounds.empty () && " seq type with constant bounds cannot have empty bounds" );
1334+ assert (!bounds.empty () &&
1335+ " seq type with constant bounds cannot have empty bounds" );
13351336 for (auto bound : llvm::reverse (bounds)) {
13361337 auto dataBound =
13371338 mlir::dyn_cast<mlir::acc::DataBoundsOp>(bound.getDefiningOp ());
@@ -1402,12 +1403,14 @@ static void genCombiner(fir::FirOpBuilder &builder, mlir::Location loc,
14021403 getSubscriptsFromArgs (recipe.getCombinerRegion ().getArguments ());
14031404 auto leftEntity = hlfir::Entity{value1};
14041405 if (fir::isBoxAddress (value1.getType ()))
1405- leftEntity = hlfir::Entity{builder.create <fir::LoadOp>(loc, value1).getResult ()};
1406+ leftEntity =
1407+ hlfir::Entity{builder.create <fir::LoadOp>(loc, value1).getResult ()};
14061408 auto left =
14071409 genDesignateWithTriplets (builder, loc, leftEntity, triplets, shape);
14081410 auto rightEntity = hlfir::Entity{value2};
14091411 if (fir::isBoxAddress (value2.getType ()))
1410- rightEntity = hlfir::Entity{builder.create <fir::LoadOp>(loc, value2).getResult ()};
1412+ rightEntity =
1413+ hlfir::Entity{builder.create <fir::LoadOp>(loc, value2).getResult ()};
14111414 auto right =
14121415 genDesignateWithTriplets (builder, loc, rightEntity, triplets, shape);
14131416
0 commit comments