Skip to content

Commit

Permalink
chore(ssa refactor): rm double insert
Browse files Browse the repository at this point in the history
  • Loading branch information
joss-aztec committed Jun 1, 2023
1 parent 62e4f28 commit f47a75f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crates/noirc_evaluator/src/ssa_refactor/acir_gen/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,6 @@ impl Context {
Instruction::Allocate { size } => {
let array_id = self.acir_context.allocate_array(*size as usize);
let result_ids = dfg.instruction_results(instruction_id);
self.ssa_value_to_array_address.insert(result_ids[0], (array_id, 0));
(Vec::new(), Vec::new())
}
Instruction::Store { address, value } => {
Expand Down

0 comments on commit f47a75f

Please sign in to comment.