enable F64

This commit is contained in:
Folkert 2021-09-07 17:42:31 +02:00
parent e316bfca72
commit afd7553e7a
3 changed files with 15 additions and 10 deletions

View file

@ -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)),
}
}