Skip to content

Draft: Implementing Where node at ASR level

Gagandeep Singh requested to merge czgdp18071/lfortran:where into master

As of now I have implemented Where node in ASR level and started work to implement ASR pass for converting where to do loop. The typical problem in doing so is the usage of iterator variables. These variables should be added to the SymbolTable of the current program/module and hence, a unique name is to be picked up for iterating each dimension of the array in where statement.

Merge request reports