Skip to content

Commit

Permalink
feat: disable constraint bubbling pass
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Jan 23, 2024
1 parent 9d83c2b commit 9e1ac8c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion compiler/noirc_evaluator/src/ssa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ pub(crate) fn optimize_into_acir(
.run_pass(Ssa::mem2reg, "After Mem2Reg:")
.run_pass(Ssa::fold_constants, "After Constant Folding:")
.run_pass(Ssa::dead_instruction_elimination, "After Dead Instruction Elimination:")
.run_pass(Ssa::bubble_up_constrains, "After Constraint Bubbling:")
.finish();

let brillig = ssa.to_brillig(print_brillig_trace);
Expand Down

0 comments on commit 9e1ac8c

Please sign in to comment.