[PATCH] D100345: [WebAssembly] Test i64x2.abs encoding

Thomas Lively via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 12 14:54:08 PDT 2021


tlively created this revision.
tlively added reviewers: aheejin, dschuff.
Herald added subscribers: wingo, ecnelises, sunfish, jgravelle-google, sbc100.
tlively requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

This test was disabled despite the instruction having been implemented for a
long time. This commit just enables the test.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D100345

Files:
  llvm/test/MC/WebAssembly/simd-encodings.s


Index: llvm/test/MC/WebAssembly/simd-encodings.s
===================================================================
--- llvm/test/MC/WebAssembly/simd-encodings.s
+++ llvm/test/MC/WebAssembly/simd-encodings.s
@@ -597,7 +597,8 @@
     # CHECK: i32x4.extmul_high_i16x8_u # encoding: [0xfd,0xbf,0x01]
     i32x4.extmul_high_i16x8_u
 
-    # TODO: i64x2.abs # encoding: [0xfd,0xc0,0x01]
+    # CHECK: i64x2.abs # encoding: [0xfd,0xc0,0x01]
+    i64x2.abs
 
     # CHECK: i64x2.neg # encoding: [0xfd,0xc1,0x01]
     i64x2.neg


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D100345.336970.patch
Type: text/x-patch
Size: 521 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210412/853d92e5/attachment.bin>


More information about the llvm-commits mailing list