summaryrefslogtreecommitdiff
path: root/flang/lib/Lower/ComponentPath.cpp
AgeCommit message (Collapse)Author
2024-06-17[Flang] Switch to common::visit more call sites (#90018)Alexander Shaposhnikov
Switch to common::visit more call sites. Test plan: ninja check-all
2022-06-20Don't use Optional::getValue (NFC)Kazu Hirata
2022-05-06Upstream support for POINTER assignment in FORALL.Eric Schweitz
Reviewed By: vdonaldson, PeteSteinfeld Differential Revision: https://reviews.llvm.org/D125140
2022-02-24[flang] Simple array assignment loweringValentin Clement
This patch handles lowering of simple array assignment. ``` a(:) = 10 ``` or ``` a(1) = 1 ``` This patch is part of the upstreaming effort from fir-dev branch. Reviewed By: PeteSteinfeld, schweitz Differential Revision: https://reviews.llvm.org/D120501 Co-authored-by: Jean Perier <jperier@nvidia.com> Co-authored-by: V Donaldson <vdonaldson@nvidia.com> Co-authored-by: Eric Schweitz <eschweitz@nvidia.com>