Skip to content

Commit 61317b4

Browse files
authored
fix: Fix number of lines for f32x4.shuffle definition (#2459)
1 parent 8c301ce commit 61317b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: std/assembly/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1294,7 +1294,7 @@ declare namespace f32x4 {
12941294
/** Demotes each 64-bit float lane of a vector to single-precision. The higher lanes of the result are initialized to zero. */
12951295
export function demote_f64x2_zero(a: v128): v128;
12961296
/** Selects 32-bit lanes from either vector according to the specified [0-3] respectively [4-7] lane indexes. */
1297-
export function shuffle(a: v128, b: v128, l0: u8, l1: u8, l2: u8, l3: u8, l4: u8): v128;
1297+
export function shuffle(a: v128, b: v128, l0: u8, l1: u8, l2: u8, l3: u8): v128;
12981298
/** Selects 8-bit lanes from the first vector according to the indexes [0-15] specified by the 8-bit lanes of the second vector. */
12991299
export function swizzle(a: v128, s: v128): v128;
13001300
}

0 commit comments

Comments
 (0)