mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 06:15:33 +00:00
Add V128 stubs to allow singlepass backend to build again.
This commit is contained in:
parent
77afcea9dc
commit
3ba8100e98
@ -4885,6 +4885,7 @@ fn type_to_wp_type(ty: Type) -> WpType {
|
||||
Type::I64 => WpType::I64,
|
||||
Type::F32 => WpType::F32,
|
||||
Type::F64 => WpType::F64,
|
||||
Type::V128 => WpType::V128,
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -6,6 +6,7 @@ pub enum Location {
|
||||
Imm8(u8),
|
||||
Imm32(u32),
|
||||
Imm64(u64),
|
||||
Imm128(u128),
|
||||
GPR(GPR),
|
||||
XMM(XMM),
|
||||
Memory(GPR, i32),
|
||||
|
Loading…
Reference in New Issue
Block a user