From b4fbf7e9c10fdf7ddddc6c0d598608e02c120ae2 Mon Sep 17 00:00:00 2001 From: Marat Dukhan Date: Tue, 22 Dec 2020 21:32:09 -0800 Subject: [PATCH] i64x2.ne instruction --- proposals/simd/BinarySIMD.md | 1 + proposals/simd/ImplementationStatus.md | 1 + proposals/simd/SIMD.md | 1 + 3 files changed, 3 insertions(+) diff --git a/proposals/simd/BinarySIMD.md b/proposals/simd/BinarySIMD.md index 57971f165..620325fae 100644 --- a/proposals/simd/BinarySIMD.md +++ b/proposals/simd/BinarySIMD.md @@ -249,3 +249,4 @@ For example, `ImmLaneIdx16` is a byte with values in the range 0-15 (inclusive). | `v128.store16_lane` | `TBD`| m:memarg, i:ImmLaneIdx8 | | `v128.store32_lane` | `TBD`| m:memarg, i:ImmLaneIdx4 | | `v128.store64_lane` | `TBD`| m:memarg, i:ImmLaneIdx2 | +| `i64x2.ne` | `TBD`| - | diff --git a/proposals/simd/ImplementationStatus.md b/proposals/simd/ImplementationStatus.md index a2b18c992..dce91b0d5 100644 --- a/proposals/simd/ImplementationStatus.md +++ b/proposals/simd/ImplementationStatus.md @@ -217,6 +217,7 @@ | `v128.store16_lane` | | | | | | | `v128.store32_lane` | | | | | | | `v128.store64_lane` | | | | | | +| `i64x2.ne` | | | | | | [1] Tip of tree LLVM as of May 20, 2020 diff --git a/proposals/simd/SIMD.md b/proposals/simd/SIMD.md index 24db53eb1..c176be73e 100644 --- a/proposals/simd/SIMD.md +++ b/proposals/simd/SIMD.md @@ -735,6 +735,7 @@ def S.eq(a, b): * `i8x16.ne(a: v128, b: v128) -> v128` * `i16x8.ne(a: v128, b: v128) -> v128` * `i32x4.ne(a: v128, b: v128) -> v128` +* `i64x2.ne(a: v128, b: v128) -> v128` * `f32x4.ne(a: v128, b: v128) -> v128` * `f64x2.ne(a: v128, b: v128) -> v128`