Optimize SSA phi construction - #281
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 0b55eb129c
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
|
@codex review |
|
Codex Review: Didn't find any major issues. 🚀 ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
If Codex has suggestions, it will comment; otherwise it will react with 👍. Codex can also answer questions or update the PR. Try commenting "@codex address that feedback". |
| for (value, _) in &mut args { | ||
| *value = self.resolve_alias(*value); | ||
| } |
There was a problem hiding this comment.
agent:
This pass is now load-bearing: it repairs the aliases created while args sat in
the local buffer untracked, where the old code's full-layout scan used to. Worth
a comment saying so — and maybe a debug-only check, sinceerase_instcatches
extra stale users but not missing ones, so a future untracked mutation would
fail silently.
No description provided.