Skip to content

Commit

Permalink
Clean up compiler output
Browse files Browse the repository at this point in the history
  • Loading branch information
iangneal committed Oct 24, 2023
1 parent 304d8f7 commit 2f23b5c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion compiler/src/circuit_design/circuit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ impl WriteLLVMIR for Circuit {

// Code for the templates
for t in &self.templates {
println!("Generating code for {}", t.header);
if cfg!(debug_assertions) {
println!("Generating code for {}", t.header);
}
// code.append(&mut t.produce_llvm_ir(producer));
t.produce_llvm_ir(producer);
}
Expand Down

0 comments on commit 2f23b5c

Please sign in to comment.