diff options
Diffstat (limited to 'test/atomics64.wast.fromBinary')
-rw-r--r-- | test/atomics64.wast.fromBinary | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/atomics64.wast.fromBinary b/test/atomics64.wast.fromBinary index 1dcf24a1e..fc405c15c 100644 --- a/test/atomics64.wast.fromBinary +++ b/test/atomics64.wast.fromBinary @@ -142,40 +142,40 @@ (local $1 i64) (local $2 i64) (drop - (i32.atomic.wait + (memory.atomic.wait32 (local.get $1) (local.get $0) (local.get $2) ) ) (drop - (i32.atomic.wait offset=4 + (memory.atomic.wait32 offset=4 (local.get $1) (local.get $0) (local.get $2) ) ) (drop - (atomic.notify + (memory.atomic.notify (local.get $1) (local.get $0) ) ) (drop - (atomic.notify offset=24 + (memory.atomic.notify offset=24 (local.get $1) (local.get $0) ) ) (drop - (i64.atomic.wait + (memory.atomic.wait64 (local.get $1) (local.get $2) (local.get $2) ) ) (drop - (i64.atomic.wait offset=16 + (memory.atomic.wait64 offset=16 (local.get $1) (local.get $2) (local.get $2) |