-
Notifications
You must be signed in to change notification settings - Fork 6
Fix #12 #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix #12 #13
Conversation
|
This actually introduces a different bug when looking at nested function calls fails with |
|
It seems to be ssa-ifying the function name, so perhaps there's some logic that relies on the fact that assignments are visited in the other order. |
|
(reverting the commit to swap the assign ordering fixes the issue with the function name being ssa-ified) |
|
Visiting the RHS is important. if visiting LHS first: becomes I'm confused as why function names would be ssa-ified visiting LHS first. Only names in the store context should be ssa-ified. I look into it. |
No description provided.