[flang-commits] [flang] [flang] Use `createOpWithBody` for section op, NFC (PR #74659)
via flang-commits
flang-commits at lists.llvm.org
Wed Dec 6 14:04:35 PST 2023
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-flang-openmp
Author: Krzysztof Parzyszek (kparzysz)
<details>
<summary>Changes</summary>
Replace explicit calls to
```
op = builder.create<SectionOp>(...)
createBodyOfOp<SectionOp>(op, ...)
```
with a single call to
```
createOpWithBody<SectionOp>(...)
```
This is NFC, that's what the `createOpWithBody` function does.
---
Full diff: https://github.com/llvm/llvm-project/pull/74659.diff
1 Files Affected:
- (modified) flang/lib/Lower/OpenMP.cpp (+3-5)
``````````diff
diff --git a/flang/lib/Lower/OpenMP.cpp b/flang/lib/Lower/OpenMP.cpp
index 0fa1ac76d57edb..31d5df040c5d69 100644
--- a/flang/lib/Lower/OpenMP.cpp
+++ b/flang/lib/Lower/OpenMP.cpp
@@ -3233,7 +3233,6 @@ static void
genOMP(Fortran::lower::AbstractConverter &converter,
Fortran::lower::pft::Evaluation &eval,
const Fortran::parser::OpenMPSectionConstruct §ionConstruct) {
- fir::FirOpBuilder &firOpBuilder = converter.getFirOpBuilder();
mlir::Location currentLocation = converter.getCurrentLocation();
const Fortran::parser::OpenMPConstruct *parentOmpConstruct =
eval.parentConstruct->getIf<Fortran::parser::OpenMPConstruct>();
@@ -3251,10 +3250,9 @@ genOMP(Fortran::lower::AbstractConverter &converter,
.t);
// Currently only private/firstprivate clause is handled, and
// all privatization is done within `omp.section` operations.
- mlir::omp::SectionOp sectionOp =
- firOpBuilder.create<mlir::omp::SectionOp>(currentLocation);
- createBodyOfOp<mlir::omp::SectionOp>(sectionOp, converter, currentLocation,
- eval, §ionsClauseList);
+ genOpWithBody<mlir::omp::SectionOp>(converter, eval, currentLocation,
+ /*outerCombined=*/false,
+ §ionsClauseList);
}
static void
``````````
</details>
https://github.com/llvm/llvm-project/pull/74659
More information about the flang-commits
mailing list