Move some wasm constants and macros

This commit is contained in:
Brian Carroll 2022-11-13 09:03:26 +00:00
parent 63d9187343
commit 2e67bdf4d0
No known key found for this signature in database
GPG key ID: 5C7B2EC4101703C0
4 changed files with 31 additions and 29 deletions

View file

@ -7,8 +7,10 @@ use roc_module::symbol::Symbol;
use roc_mono::layout::{Layout, STLayoutInterner};
use crate::layout::{CallConv, ReturnMethod, StackMemoryFormat, WasmLayout};
use crate::{copy_memory, round_up_to_alignment, CopyMemoryConfig, PTR_TYPE};
use roc_wasm_module::{Align, CodeBuilder, LocalId, ValueType, VmSymbolState};
use crate::{copy_memory, CopyMemoryConfig, PTR_TYPE};
use roc_wasm_module::{
round_up_to_alignment, Align, CodeBuilder, LocalId, ValueType, VmSymbolState,
};
pub enum StoredVarKind {
Variable,