Open hsmajlovic opened 10 months ago
Add IR pass that will transform double indices a[i][j] to a[i, j] for better performance.
a[i][j]
a[i, j]
Add IR pass that will transform double indices
a[i][j]
toa[i, j]
for better performance.