summaryrefslogtreecommitdiff
path: root/flang/test/Integration/debug-variable-array-dim.f90
AgeCommit message (Collapse)Author
2024-10-03[flang][debug] Handle array types with variable size/bounds. (#110686)Abid Qadeer
The debug information generated by flang did not handle the cases where dimension or lower bounds of the arrays were variable. This PR fixes this issue. It will help distinguish assumed size arrays from cases where array size are variable. It also handles the variable lower bounds for assumed shape arrays. Fixes #98879.