@@ -808,7 +808,7 @@ declare namespace v128 {
808
808
/** Loads a single lane from memory into the specified lane of the given vector. Other lanes are bypassed as is. */
809
809
export function load_lane < T > ( ptr : usize , vec : v128 , idx : u8 , immOffset ?: usize , immAlign ?: usize ) : v128 ;
810
810
/** Stores the single lane at the specified index of the given vector to memory. */
811
- export function store_lane < T > ( ptr : usize , vec : v128 , idx : u8 , immOffset ?: usize , immAlign ?: usize ) : v128 ;
811
+ export function store_lane < T > ( ptr : usize , vec : v128 , idx : u8 , immOffset ?: usize , immAlign ?: usize ) : void ;
812
812
/** Creates a vector with eight 16-bit integer lanes by loading and sign extending eight 8-bit integers. */
813
813
export function load8x8_s ( ptr : usize , immOffset ?: u32 , immAlign ?: u32 ) : v128 ;
814
814
/** Creates a vector with eight 16-bit integer lanes by loading and zero extending eight 8-bit integers. */
@@ -844,13 +844,13 @@ declare namespace v128 {
844
844
/** Loads a single 64-bit lane from memory into the specified lane of the given vector. Other lanes are bypassed as is. */
845
845
export function load64_lane ( ptr : usize , vec : v128 , idx : u8 , immOffset ?: usize , immAlign ?: usize ) : v128 ;
846
846
/** Stores the 8-bit lane at the specified lane of the given vector to memory. */
847
- export function store8_lane ( ptr : usize , vec : v128 , idx : u8 , immOffset ?: usize , immAlign ?: usize ) : v128 ;
847
+ export function store8_lane ( ptr : usize , vec : v128 , idx : u8 , immOffset ?: usize , immAlign ?: usize ) : void ;
848
848
/** Stores the 16-bit lane at the specified lane of the given vector to memory. */
849
- export function store16_lane ( ptr : usize , vec : v128 , idx : u8 , immOffset ?: usize , immAlign ?: usize ) : v128 ;
849
+ export function store16_lane ( ptr : usize , vec : v128 , idx : u8 , immOffset ?: usize , immAlign ?: usize ) : void ;
850
850
/** Stores the 32-bit lane at the specified lane of the given vector to memory. */
851
- export function store32_lane ( ptr : usize , vec : v128 , idx : u8 , immOffset ?: usize , immAlign ?: usize ) : v128 ;
851
+ export function store32_lane ( ptr : usize , vec : v128 , idx : u8 , immOffset ?: usize , immAlign ?: usize ) : void ;
852
852
/** Stores the 64-bit lane at the specified lane of the given vector to memory. */
853
- export function store64_lane ( ptr : usize , vec : v128 , idx : u8 , immOffset ?: usize , immAlign ?: usize ) : v128 ;
853
+ export function store64_lane ( ptr : usize , vec : v128 , idx : u8 , immOffset ?: usize , immAlign ?: usize ) : void ;
854
854
/** Stores a vector to memory. */
855
855
export function store ( ptr : usize , value : v128 , immOffset ?: usize , immAlign ?: usize ) : void ;
856
856
/** Adds each lane. */
0 commit comments