Skip to content

Commit

Permalink
fix: handle dfg databus in SSA normalization
Browse files Browse the repository at this point in the history
  • Loading branch information
asterite committed Oct 8, 2024
1 parent f6dfbcf commit b03101f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions compiler/noirc_evaluator/src/ssa/opt/normalize_value_ids.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ impl Context {
terminator.mutate_blocks(|old_block| self.new_ids.blocks[&old_block]);
new_function.dfg.set_block_terminator(new_block_id, terminator);
}

// Also map the values in the databus
let old_databus = &old_function.dfg.data_bus;
new_function.dfg.data_bus = old_databus
.map_values(|old_value| self.new_ids.map_value(new_function, old_function, old_value));
}
}

Expand Down

0 comments on commit b03101f

Please sign in to comment.