[flang-commits] [flang] [llvm] [flang][OpenMP] Apply modifier representation to semantic checks (PR #116658)
Krzysztof Parzyszek via flang-commits
flang-commits at lists.llvm.org
Thu Nov 21 11:17:53 PST 2024
================
@@ -518,8 +519,14 @@ class OmpAttributeVisitor : DirectiveAttributeVisitor<llvm::omp::Directive> {
}
bool Pre(const parser::OmpClause::Reduction &x) {
- const parser::OmpReductionIdentifier &opr{
- std::get<parser::OmpReductionIdentifier>(x.v.t)};
+ const auto &objList{std::get<parser::OmpObjectList>(x.v.t)};
+ ResolveOmpObjectList(objList, Symbol::Flag::OmpReduction);
+
+ auto &modifiers{OmpGetModifiers(x.v)};
+ if (!modifiers) {
+ return false;
+ }
----------------
kparzysz wrote:
I'll update that in a separate PR.
https://github.com/llvm/llvm-project/pull/116658
More information about the flang-commits
mailing list