summaryrefslogtreecommitdiff
path: root/test/roundtrip
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2020-11-03 14:11:14 -0800
committerGitHub <noreply@github.com>2020-11-03 14:11:14 -0800
commit830d32a41449278cacb0bf17530618d47c43340b (patch)
treec3fa68b546fae8136e924611ba81b292ccb78c94 /test/roundtrip
parent8e42376ccd5f05dc1036f91b4262e67b0fc66c2d (diff)
downloadwabt-830d32a41449278cacb0bf17530618d47c43340b.tar.gz
wabt-830d32a41449278cacb0bf17530618d47c43340b.tar.bz2
wabt-830d32a41449278cacb0bf17530618d47c43340b.zip
Rename atomic.notify, *.atomic.wait (#1564)
atomic.notify -> memory.atomic.notify i32.atomic.wait -> memory.atomic.wait32 i64.atomic.wait -> memory.atomic.wait64 These were renamed upstream a while ago, but the new names were not added to wabt.
Diffstat (limited to 'test/roundtrip')
-rw-r--r--test/roundtrip/fold-atomic.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/roundtrip/fold-atomic.txt b/test/roundtrip/fold-atomic.txt
index 6e445c0c..390861f1 100644
--- a/test/roundtrip/fold-atomic.txt
+++ b/test/roundtrip/fold-atomic.txt
@@ -86,16 +86,16 @@
(type (;0;) (func))
(func (;0;) (type 0)
(drop
- (atomic.notify
+ (memory.atomic.notify
(i32.const 0)
(i32.const 0)))
(drop
- (i32.atomic.wait
+ (memory.atomic.wait32
(i32.const 0)
(i32.const 0)
(i64.const 0)))
(drop
- (i64.atomic.wait
+ (memory.atomic.wait64
(i32.const 0)
(i64.const 0)
(i64.const 0)))