From 4f57d33e29e16ea6ac3d98c328ea0b7f0fe7bdeb Mon Sep 17 00:00:00 2001 From: Heejin Ahn Date: Thu, 27 Jun 2019 21:22:04 +0000 Subject: [PATCH] [WebAssembly] Enable an atomic.notify MC test Summary: Assembly of atomic.notify has been fixed in r364576, so we can enable it. Reviewers: aardappel Subscribers: dschuff, sbc100, jgravelle-google, sunfish, jfb, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D63898 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@364596 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/MC/WebAssembly/atomics-encodings.s | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/MC/WebAssembly/atomics-encodings.s b/test/MC/WebAssembly/atomics-encodings.s index 1bf52c9595e..20075f6d990 100644 --- a/test/MC/WebAssembly/atomics-encodings.s +++ b/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] -- 2.40.0