[flang] Fix: use right symbol for parent component
authorPeter Klausler <pklausler@nvidia.com>
Fri, 28 Jan 2022 16:28:00 +0000 (08:28 -0800)
committerPeter Klausler <pklausler@nvidia.com>
Wed, 2 Feb 2022 18:49:10 +0000 (10:49 -0800)
commit73f21db537f7828ab55bd2a365e5ccdf2c439ab7
treebd7e7600467a26a2e05bb9dcb3fca928c58c1cf5
parent0b5fb7c604e66b04b66b0bedb8141941a6237551
[flang] Fix: use right symbol for parent component

When constructing the representation for a component reference
to an inherited component, expression semantics make the parent
component references explicit in the DataRef; e.g., base%component
becomes base%parent%grandparent%component if component was
inheritance-associated through two levels.  But expression semantics
was inserting references to the symbol table entries for the
intermediate types, not the symbols for the parent components in
the extended types.  (We didn't notice the distinction until
recently because both symbols have the same name; this only
affects lowering.)  Find and use the right symbols.

Differential Revision: https://reviews.llvm.org/D118746
flang/include/flang/Semantics/symbol.h
flang/lib/Semantics/expression.cpp