@@ -13,7 +13,7 @@ use crate::masm::{
1313 DivKind , Extend , ExtractLaneKind , FloatCmpKind , IntCmpKind , LoadKind , MacroAssembler ,
1414 MemMoveDirection , MulWideKind , OperandSize , RegImm , RemKind , ReplaceLaneKind , RmwOp ,
1515 RoundingMode , SPOffset , ShiftKind , Signed , SplatKind , SplatLoadKind , StoreKind , TruncKind ,
16- VectorCompareKind , VectorEqualityKind , VectorExtendKind , Zero ,
16+ V128LoadExtendKind , VectorCompareKind , VectorEqualityKind , Zero ,
1717} ;
1818
1919use crate :: reg:: { writable, Reg } ;
@@ -2790,47 +2790,47 @@ where
27902790 self . emit_wasm_load (
27912791 & memarg,
27922792 WasmValType :: V128 ,
2793- LoadKind :: VectorExtend ( VectorExtendKind :: V128Extend8x8S ) ,
2793+ LoadKind :: VectorExtend ( V128LoadExtendKind :: E8x8S ) ,
27942794 )
27952795 }
27962796
27972797 fn visit_v128_load8x8_u ( & mut self , memarg : MemArg ) -> Self :: Output {
27982798 self . emit_wasm_load (
27992799 & memarg,
28002800 WasmValType :: V128 ,
2801- LoadKind :: VectorExtend ( VectorExtendKind :: V128Extend8x8U ) ,
2801+ LoadKind :: VectorExtend ( V128LoadExtendKind :: E8x8U ) ,
28022802 )
28032803 }
28042804
28052805 fn visit_v128_load16x4_s ( & mut self , memarg : MemArg ) -> Self :: Output {
28062806 self . emit_wasm_load (
28072807 & memarg,
28082808 WasmValType :: V128 ,
2809- LoadKind :: VectorExtend ( VectorExtendKind :: V128Extend16x4S ) ,
2809+ LoadKind :: VectorExtend ( V128LoadExtendKind :: E16x4S ) ,
28102810 )
28112811 }
28122812
28132813 fn visit_v128_load16x4_u ( & mut self , memarg : MemArg ) -> Self :: Output {
28142814 self . emit_wasm_load (
28152815 & memarg,
28162816 WasmValType :: V128 ,
2817- LoadKind :: VectorExtend ( VectorExtendKind :: V128Extend16x4U ) ,
2817+ LoadKind :: VectorExtend ( V128LoadExtendKind :: E16x4U ) ,
28182818 )
28192819 }
28202820
28212821 fn visit_v128_load32x2_s ( & mut self , memarg : MemArg ) -> Self :: Output {
28222822 self . emit_wasm_load (
28232823 & memarg,
28242824 WasmValType :: V128 ,
2825- LoadKind :: VectorExtend ( VectorExtendKind :: V128Extend32x2S ) ,
2825+ LoadKind :: VectorExtend ( V128LoadExtendKind :: E32x2S ) ,
28262826 )
28272827 }
28282828
28292829 fn visit_v128_load32x2_u ( & mut self , memarg : MemArg ) -> Self :: Output {
28302830 self . emit_wasm_load (
28312831 & memarg,
28322832 WasmValType :: V128 ,
2833- LoadKind :: VectorExtend ( VectorExtendKind :: V128Extend32x2U ) ,
2833+ LoadKind :: VectorExtend ( V128LoadExtendKind :: E32x2U ) ,
28342834 )
28352835 }
28362836
0 commit comments