diff options
author | Heejin Ahn <aheejin@gmail.com> | 2019-06-27 21:22:04 +0000 |
---|---|---|
committer | Heejin Ahn <aheejin@gmail.com> | 2019-06-27 21:22:04 +0000 |
commit | 24dba1fe972e25b2d376ada33ab7f19ef2aa4714 (patch) | |
tree | 4abe18c08f45534433912153ae7b0542c98f465e /llvm/test/MC/WebAssembly | |
parent | 3b56e390dd12d673cf4a974ac331f93111c036e1 (diff) | |
download | bcm5719-llvm-24dba1fe972e25b2d376ada33ab7f19ef2aa4714.tar.gz bcm5719-llvm-24dba1fe972e25b2d376ada33ab7f19ef2aa4714.zip |
[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
llvm-svn: 364596
Diffstat (limited to 'llvm/test/MC/WebAssembly')
-rw-r--r-- | llvm/test/MC/WebAssembly/atomics-encodings.s | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/test/MC/WebAssembly/atomics-encodings.s b/llvm/test/MC/WebAssembly/atomics-encodings.s index 1bf52c9595e..20075f6d990 100644 --- a/llvm/test/MC/WebAssembly/atomics-encodings.s +++ b/llvm/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] |