[flang-commits] [flang] [flang][acc] Add support for lowering combined constructs (PR #80321)
Valentin Clement バレンタイン クレメン via flang-commits
flang-commits at lists.llvm.org
Thu Feb 1 11:59:12 PST 2024
================
@@ -2681,18 +2691,18 @@ genACC(Fortran::lower::AbstractConverter &converter,
if (blockDirective.v == llvm::acc::ACCD_parallel) {
createComputeOp<mlir::acc::ParallelOp>(converter, currentLocation, eval,
semanticsContext, stmtCtx,
- accClauseList);
+ accClauseList, {});
} else if (blockDirective.v == llvm::acc::ACCD_data) {
genACCDataOp(converter, currentLocation, eval, semanticsContext, stmtCtx,
accClauseList);
} else if (blockDirective.v == llvm::acc::ACCD_serial) {
createComputeOp<mlir::acc::SerialOp>(converter, currentLocation, eval,
semanticsContext, stmtCtx,
- accClauseList);
+ accClauseList, {});
} else if (blockDirective.v == llvm::acc::ACCD_kernels) {
createComputeOp<mlir::acc::KernelsOp>(converter, currentLocation, eval,
semanticsContext, stmtCtx,
- accClauseList);
+ accClauseList, {});
----------------
clementval wrote:
```suggestion
accClauseList, /*combinedConstructs=*/{});
```
https://github.com/llvm/llvm-project/pull/80321
More information about the flang-commits
mailing list