[flang-commits] [flang] [Flang] Fix crash in structure constructor lowering for PDT (PR #183543)
via flang-commits
flang-commits at lists.llvm.org
Wed Mar 4 02:25:37 PST 2026
https://github.com/jeanPerier commented:
Thanks for finding the bug, I think I would rather transform the fallback into a hard TODO like below because as you mentioned the change is a workaround that is not always valid, so I want to make sure this is never allowed to compile end-to-end when going through that path.
```
if (!componentParentType)
TODO(loc, "parameterized derived types");
```
https://github.com/llvm/llvm-project/pull/183543
More information about the flang-commits
mailing list