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
We're still relying on alias analysis to assume that temp doesn't alias input, but the proof is much simpler: the value of a local variable can't be aliased by things that existed before it was declared. This is an assumption every language freely makes, and so this version of the function could be optimized the way we want in any language.
The assumption is that temp doesn't ALIAS input, but the proof is try to prove input doesn't ALIAS local variable temp.
The text was updated successfully, but these errors were encountered:
The doc says:
The assumption is that
temp
doesn't ALIASinput
, but the proof is try to proveinput
doesn't ALIAS local variabletemp
.The text was updated successfully, but these errors were encountered: