From 5aabc6dfc92a86de36c047364aa2de21e8065f24 Mon Sep 17 00:00:00 2001 From: Ng Zhi An Date: Fri, 4 Oct 2019 10:21:00 -0700 Subject: [PATCH 1/2] Update i64x2.mul opcode --- proposals/simd/BinarySIMD.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proposals/simd/BinarySIMD.md b/proposals/simd/BinarySIMD.md index 919dd767b..4f0d89041 100644 --- a/proposals/simd/BinarySIMD.md +++ b/proposals/simd/BinarySIMD.md @@ -136,7 +136,7 @@ The `v8x16.shuffle` instruction has 16 bytes after `simdop`. | `i64x2.shr_s` | `0x88`| - | | `i64x2.shr_u` | `0x89`| - | | `i64x2.add` | `0x8a`| - | -| `i64x2.mul` | `0x8c`| - | +| `i64x2.mul` | `0x90`| - | | `i64x2.sub` | `0x8d`| - | | `f32x4.abs` | `0x95`| - | | `f32x4.neg` | `0x96`| - | From 277738f5fd094cc3118064a93be02a03f8c83716 Mon Sep 17 00:00:00 2001 From: Ng Zhi An Date: Fri, 4 Oct 2019 10:27:46 -0700 Subject: [PATCH 2/2] Fix ordering --- proposals/simd/BinarySIMD.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proposals/simd/BinarySIMD.md b/proposals/simd/BinarySIMD.md index 4f0d89041..8617d725d 100644 --- a/proposals/simd/BinarySIMD.md +++ b/proposals/simd/BinarySIMD.md @@ -136,8 +136,8 @@ The `v8x16.shuffle` instruction has 16 bytes after `simdop`. | `i64x2.shr_s` | `0x88`| - | | `i64x2.shr_u` | `0x89`| - | | `i64x2.add` | `0x8a`| - | -| `i64x2.mul` | `0x90`| - | | `i64x2.sub` | `0x8d`| - | +| `i64x2.mul` | `0x90`| - | | `f32x4.abs` | `0x95`| - | | `f32x4.neg` | `0x96`| - | | `f32x4.sqrt` | `0x97`| - |