[flang-commits] [flang] [mlir] [MLIR][OpenMP][Flang] Normalize clause arguments names (PR #99505)
Michael Kruse via flang-commits
flang-commits at lists.llvm.org
Mon Jul 22 09:04:21 PDT 2024
================
@@ -179,46 +179,46 @@ struct PrivateClauseOps {
llvm::SmallVector<Value> privateVars;
// The list of symbols referring to delayed privatizer ops (i.e. `omp.private`
// ops).
- llvm::SmallVector<Attribute> privatizers;
+ llvm::SmallVector<Attribute> privateSyms;
};
struct ProcBindClauseOps {
- ClauseProcBindKindAttr procBindKindAttr;
+ ClauseProcBindKindAttr procBindKind;
};
struct ReductionClauseOps {
llvm::SmallVector<Value> reductionVars;
----------------
Meinersbur wrote:
ok, sounds justified.
https://github.com/llvm/llvm-project/pull/99505
More information about the flang-commits
mailing list