[flang-commits] [flang] [Flang][OpenMP] Consider renames when processing reduction intrinsics (PR #70822)
David Truby via flang-commits
flang-commits at lists.llvm.org
Mon Dec 4 10:08:46 PST 2023
================
@@ -480,21 +480,28 @@ class OmpAttributeVisitor : DirectiveAttributeVisitor<llvm::omp::Directive> {
bool Pre(const parser::OmpClause::Reduction &x) {
const parser::OmpReductionOperator &opr{
std::get<parser::OmpReductionOperator>(x.v.t)};
+ auto createDummyProcSymbol = [&](const parser::Name *name) {
+ // If name resolution failed, create a dummy symbol
+ const auto namePair{
+ currScope().try_emplace(name->source, Attrs{}, ProcEntityDetails{})};
+ auto &newSymbol{*namePair.first->second};
+ name->symbol = &newSymbol;
+ };
if (const auto *procD{parser::Unwrap<parser::ProcedureDesignator>(opr.u)}) {
if (const auto *name{parser::Unwrap<parser::Name>(procD->u)}) {
if (!name->symbol) {
- const auto namePair{currScope().try_emplace(
- name->source, Attrs{}, ProcEntityDetails{})};
- auto &symbol{*namePair.first->second};
- name->symbol = &symbol;
- name->symbol->set(Symbol::Flag::OmpReduction);
----------------
DavidTruby wrote:
Nit: would it be worth adding the OmpReduction flag on it anyway, since it _is_ a reduction variable and we might need it later? Just so we aren't confused later. It does look like it was getting set before this change?
https://github.com/llvm/llvm-project/pull/70822
More information about the flang-commits
mailing list