mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 14:24:45 +00:00
enable F64
This commit is contained in:
parent
e316bfca72
commit
afd7553e7a
3 changed files with 15 additions and 10 deletions
|
@ -34,6 +34,10 @@ impl WasmLayout {
|
|||
value_type: ValueType::I64,
|
||||
stack_memory: 0,
|
||||
}),
|
||||
Layout::Builtin(Builtin::Float64) => Ok(Self {
|
||||
value_type: ValueType::F64,
|
||||
stack_memory: 0,
|
||||
}),
|
||||
x => Err(format!("layout, {:?}, not implemented yet", x)),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue