Skip to content
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

chore(ssa refactor): hookup alloc + store instructions #1464

Merged
merged 17 commits into from
Jun 1, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore(ssa refactor): rm double insert
joss-aztec committed Jun 1, 2023
commit 1317ad1cd9db0c92a960cd32cf5fe689cb5850ec
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
@@ -146,7 +146,6 @@ impl Context {
(Vec::new(), Vec::new())
} else {
let result_acir_var = self.convert_ssa_binary(binary, dfg);
self.ssa_value_to_acir_var.insert(result_ids[0], result_acir_var);
(vec![result_ids[0]], vec![result_acir_var])
}
}