Skip to content

Commit

Permalink
chore: remove unwanted prints (#4419)
Browse files Browse the repository at this point in the history
# Description

## Problem\*

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

## Summary\*

This removes some unwanted prints which were left in from #4376

## 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 authored Feb 24, 2024
1 parent 27c66b3 commit 3386067
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions compiler/noirc_evaluator/src/ssa/ssa_gen/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -347,10 +347,8 @@ impl<'a> FunctionContext<'a> {
}

fn codegen_binary(&mut self, binary: &ast::Binary) -> Result<Values, RuntimeError> {
eprintln!("Start binary");
let lhs = self.codegen_non_tuple_expression(&binary.lhs)?;
let rhs = self.codegen_non_tuple_expression(&binary.rhs)?;
eprintln!("Insert binary");
Ok(self.insert_binary(lhs, binary.operator, rhs, binary.location))
}

Expand Down

0 comments on commit 3386067

Please sign in to comment.