mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 07:14:46 +00:00
Move layout_id from mono to gen
This is because it's actually important that mono never use this. It should only be used in gen, because it's only safe to use synchronously, and it's important that mono be done in parallel. Moving it to gen guarantees that mono will not use it, even accidentally!
This commit is contained in:
parent
bd6228de8b
commit
bf11262e61
7 changed files with 7 additions and 7 deletions
|
@ -1,3 +1,4 @@
|
|||
use crate::layout_id::LayoutIds;
|
||||
use crate::llvm::convert::{
|
||||
basic_type_from_layout, collection, get_fn_type, get_ptr_type, ptr_int,
|
||||
};
|
||||
|
@ -17,7 +18,6 @@ use roc_collections::all::ImMap;
|
|||
use roc_module::symbol::{Interns, Symbol};
|
||||
use roc_mono::expr::{Expr, Proc};
|
||||
use roc_mono::layout::{Builtin, Layout};
|
||||
use roc_mono::layout_id::LayoutIds;
|
||||
use target_lexicon::CallingConvention;
|
||||
|
||||
/// This is for Inkwell's FunctionValue::verify - we want to know the verification
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue