@@ -808,7 +808,7 @@ declare namespace v128 {
808808 /** Loads a single lane from memory into the specified lane of the given vector. Other lanes are bypassed as is. */
809809 export function load_lane < T > ( ptr : usize , vec : v128 , idx : u8 , immOffset ?: usize , immAlign ?: usize ) : v128 ;
810810 /** 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 ;
812812 /** Creates a vector with eight 16-bit integer lanes by loading and sign extending eight 8-bit integers. */
813813 export function load8x8_s ( ptr : usize , immOffset ?: u32 , immAlign ?: u32 ) : v128 ;
814814 /** 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 {
844844 /** Loads a single 64-bit lane from memory into the specified lane of the given vector. Other lanes are bypassed as is. */
845845 export function load64_lane ( ptr : usize , vec : v128 , idx : u8 , immOffset ?: usize , immAlign ?: usize ) : v128 ;
846846 /** 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 ;
848848 /** 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 ;
850850 /** 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 ;
852852 /** 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 ;
854854 /** Stores a vector to memory. */
855855 export function store ( ptr : usize , value : v128 , immOffset ?: usize , immAlign ?: usize ) : void ;
856856 /** Adds each lane. */
0 commit comments