[PATCH] D63898: [WebAssembly] Enable an atomic.notify MC test

Heejin Ahn via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 27 14:22:40 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL364596: [WebAssembly] Enable an atomic.notify MC test (authored by aheejin, committed by ).

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D63898/new/

https://reviews.llvm.org/D63898

Files:
  llvm/trunk/test/MC/WebAssembly/atomics-encodings.s


Index: llvm/trunk/test/MC/WebAssembly/atomics-encodings.s
===================================================================
--- llvm/trunk/test/MC/WebAssembly/atomics-encodings.s
+++ llvm/trunk/test/MC/WebAssembly/atomics-encodings.s
@@ -3,9 +3,8 @@
 main:
   .functype main () -> ()
 
-  # FIXME This doesn't work because of PR40728. Enable this once it's fixed.
-  # C HECK:  atomic.notify 0 # encoding: [0xfe,0x00,0x00,0x00]
-  # atomic.notify 0
+  # CHECK:  atomic.notify 0 # encoding: [0xfe,0x00,0x02,0x00]
+  atomic.notify 0
   # CHECK:  i32.atomic.wait 0 # encoding: [0xfe,0x01,0x02,0x00]
   i32.atomic.wait 0
   # CHECK:  i64.atomic.wait 0 # encoding: [0xfe,0x02,0x03,0x00]


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D63898.206937.patch
Type: text/x-patch
Size: 684 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190627/1bf2ec9c/attachment.bin>


More information about the llvm-commits mailing list