Skip to content

Commit

Permalink
[compiler][ez] Include phi identifier in AssertValidMutableRanges
Browse files Browse the repository at this point in the history
Summary:
Looks like we accidentally skipped validating this identifier.

ghstack-source-id: 05964331a812d18430b27dd90c3d5fe9dd8d65d8
Pull Request resolved: #31170
  • Loading branch information
mvitousek committed Oct 10, 2024
1 parent f5b8d93 commit 131ae81
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import {
export function assertValidMutableRanges(fn: HIRFunction): void {
for (const [, block] of fn.body.blocks) {
for (const phi of block.phis) {
visitIdentifier(phi.id);
for (const [, operand] of phi.operands) {
visitIdentifier(operand);
}
Expand Down

0 comments on commit 131ae81

Please sign in to comment.