Skip to content

Commit

Permalink
fix: remove print from monomorphization pass (#4417)
Browse files Browse the repository at this point in the history
# Description

## Problem\*

Resolves <!-- Link to GitHub Issue -->

## Summary\*

We're currently printing out every expression we're monomorphising.


## Additional Context



## Documentation\*

Check one:
- [x] No documentation needed.
- [ ] Documentation included in this PR.
- [ ] **[Exceptional Case]** Documentation to be submitted in a separate
PR.

# PR Checklist\*

- [x] I have tested the changes locally.
- [x] I have formatted the changes with [Prettier](https://prettier.io/)
and/or `cargo fmt` on default settings.
  • Loading branch information
TomAFrench committed Feb 24, 2024
1 parent 16d5f18 commit 27c66b3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion compiler/noirc_evaluator/src/ssa/ssa_gen/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ impl<'a> FunctionContext<'a> {
}

fn codegen_expression(&mut self, expr: &Expression) -> Result<Values, RuntimeError> {
eprintln!("Codegen {expr}");
match expr {
Expression::Ident(ident) => Ok(self.codegen_ident(ident)),
Expression::Literal(literal) => self.codegen_literal(literal),
Expand Down

0 comments on commit 27c66b3

Please sign in to comment.