Skip to content

Commit

Permalink
chore: remove unwanted prints
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Feb 24, 2024
1 parent 27c66b3 commit 9f7c84d
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 9f7c84d

Please sign in to comment.