From b716b93fec18f978608b1c5c574e39110f18b789 Mon Sep 17 00:00:00 2001 From: MaxGraey Date: Mon, 22 Aug 2022 14:23:18 +0300 Subject: [PATCH] fix line ars for f32x4.shuffle --- std/assembly/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/assembly/index.d.ts b/std/assembly/index.d.ts index 51e8ab17cc..dc7818701d 100644 --- a/std/assembly/index.d.ts +++ b/std/assembly/index.d.ts @@ -1294,7 +1294,7 @@ declare namespace f32x4 { /** Demotes each 64-bit float lane of a vector to single-precision. The higher lanes of the result are initialized to zero. */ export function demote_f64x2_zero(a: v128): v128; /** Selects 32-bit lanes from either vector according to the specified [0-3] respectively [4-7] lane indexes. */ - export function shuffle(a: v128, b: v128, l0: u8, l1: u8, l2: u8, l3: u8, l4: u8): v128; + export function shuffle(a: v128, b: v128, l0: u8, l1: u8, l2: u8, l3: u8): v128; /** Selects 8-bit lanes from the first vector according to the indexes [0-15] specified by the 8-bit lanes of the second vector. */ export function swizzle(a: v128, s: v128): v128; }