Add V128 stubs to allow singlepass backend to build again.

This commit is contained in:
Nick Lewycky 2019-07-02 15:05:34 -07:00
parent 77afcea9dc
commit 3ba8100e98
2 changed files with 2 additions and 0 deletions

View File

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

View File

@ -6,6 +6,7 @@ pub enum Location {
Imm8(u8),
Imm32(u32),
Imm64(u64),
Imm128(u128),
GPR(GPR),
XMM(XMM),
Memory(GPR, i32),