You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def arr = replicate 10 true
entry main = zip arr arr
Causes compiler crash. Probably we should just not CSE arrays in constants - it's unlikely to be useful very often, and the aliasing implications are subtle.
The text was updated successfully, but these errors were encountered:
This bug turned out to manifest itself in many locations, but all
related to copy-removal in top level statements.
It is somewhat annoying that we have to be so careful about aliasing,
since I expect few real programs actually use in-place updates all
that much.
Causes compiler crash. Probably we should just not CSE arrays in constants - it's unlikely to be useful very often, and the aliasing implications are subtle.
The text was updated successfully, but these errors were encountered: