mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
Use readable debug names throughout refcount proc generator
This commit is contained in:
parent
820d9e0ab4
commit
3581c7f5be
3 changed files with 50 additions and 35 deletions
|
@ -102,7 +102,7 @@ pub fn build_module_help<'a>(
|
|||
}
|
||||
|
||||
// Generate IR for refcounting procs
|
||||
let refcount_procs = backend.refcount_proc_gen.generate_refcount_procs(env.arena);
|
||||
let refcount_procs = backend.generate_refcount_procs();
|
||||
|
||||
// Generate Wasm for refcounting procs
|
||||
for proc in refcount_procs.iter() {
|
||||
|
@ -111,7 +111,7 @@ pub fn build_module_help<'a>(
|
|||
|
||||
let module = backend.finalize_module();
|
||||
|
||||
if false {
|
||||
if true {
|
||||
for proc in refcount_procs.into_iter() {
|
||||
println!("{}", proc.to_pretty(200));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue