Rename code gen helper file in mono

This commit is contained in:
Brian Carroll 2021-12-13 10:56:41 +00:00
parent 33277144d6
commit 0547647341
6 changed files with 5 additions and 5 deletions

View file

@ -5,7 +5,7 @@ use roc_builtins::bitcode::IntWidth;
use roc_collections::all::MutMap;
use roc_module::low_level::LowLevel;
use roc_module::symbol::{Interns, Symbol};
use roc_mono::gen_refcount::{RefcountProcGenerator, REFCOUNT_MAX};
use roc_mono::code_gen_help::{RefcountProcGenerator, REFCOUNT_MAX};
use roc_mono::ir::{CallType, Expr, JoinPointId, Literal, Proc, Stmt};
use roc_mono::layout::{Builtin, Layout, LayoutIds, TagIdIntType, UnionLayout};
use roc_reporting::internal_error;