[flang] Fix checking of pointer target with association
When checking if the target of a pointer assignment is valid, we weren't following associations. E.g. we complained about the assignment below if `b` had the TARGET attribute but `c` did not: ``` associate(a => b%c) p => a end associate ``` The fix is to change `GetSymbolVector()` to follow associations in creating the chain of symbols from a designator. Add tests for this, and also some other cases where TARGET is on the derived type variable rather than the component (which worked but didn't have tests). Original-commit: flang-compiler/f18@c81c6baedd41d6ca2d36c81ca745a144c02be369 Reviewed-on: https://github.com/flang-compiler/f18/pull/937
Loading
Please sign in to comment