Add some disabled debugging statements

This commit is contained in:
Brian Carroll 2021-11-30 12:59:03 +00:00
parent b1ba1d2db9
commit ea64b6488c
2 changed files with 15 additions and 1 deletions

View file

@ -96,6 +96,14 @@ pub fn build_module_help<'a>(
RefcountProcGenerator::new(env.arena, IntWidth::I32, env.module_id),
);
if false {
println!("## procs");
for proc in procs.iter() {
println!("{}", proc.to_pretty(200));
println!("{:#?}", proc);
}
}
// Generate procs from user code
for proc in procs.iter() {
backend.build_proc(proc)?;
@ -107,6 +115,7 @@ pub fn build_module_help<'a>(
backend.register_symbol_debug_names();
if false {
println!("## refcount_procs");
for proc in refcount_procs.iter() {
println!("{}", proc.to_pretty(200));
println!("{:#?}", proc);