Remove debug print

This commit is contained in:
Pranav Gaddamadugu 2024-04-16 12:56:34 -07:00
parent 0eae4f07a1
commit 3de4d9ec27

View File

@ -270,12 +270,8 @@ pub fn compile_and_process<'a>(parsed: &'a mut Compiler<'a>) -> Result<String, L
parsed.function_inlining_pass(&call_graph)?;
println!("AST after inlining: {:#?}", parsed.ast.ast);
parsed.dead_code_elimination_pass()?;
println!("AST after DCE: {:#?}", parsed.ast.ast);
// Compile Leo program to bytecode.
let bytecode = parsed.code_generation_pass(&st, &struct_graph, &call_graph)?;