summaryrefslogtreecommitdiff
path: root/test/binaryen.js/atomics.js
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2020-11-13 15:54:08 -0800
committerGitHub <noreply@github.com>2020-11-13 15:54:08 -0800
commit75e61204b67e921464af14fd13ff768d88755e8c (patch)
tree969ddb2e4e2870fef662375914f16fc50713cd4c /test/binaryen.js/atomics.js
parentcc2b3e4175a6edc53487eec06da13b39eb66716b (diff)
downloadbinaryen-75e61204b67e921464af14fd13ff768d88755e8c.tar.gz
binaryen-75e61204b67e921464af14fd13ff768d88755e8c.tar.bz2
binaryen-75e61204b67e921464af14fd13ff768d88755e8c.zip
Rename atomic.notify and *.atomic.wait (#3353)
- atomic.notify -> memory.atomic.notify - i32.atomic.wait -> memory.atomic.wait32 - i64.atomic.wait -> memory.atomic.wait64 See WebAssembly/threads#149. This renames instruction name printing but not the internal data structure names, such as `AtomicNotify`, which are not always the same as printed instruction names anyway. This also does not modify C API. But this fixes interface functions in binaryen.js because it seems binaryen.js's interface functions all follow the corresponding instruction names.
Diffstat (limited to 'test/binaryen.js/atomics.js')
-rw-r--r--test/binaryen.js/atomics.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/binaryen.js/atomics.js b/test/binaryen.js/atomics.js
index bd4b898bd..ce68656e0 100644
--- a/test/binaryen.js/atomics.js
+++ b/test/binaryen.js/atomics.js
@@ -59,21 +59,21 @@ module.addFunction("main", binaryen.none, binaryen.none, [], module.block("", [
),
// wait and notify
module.drop(
- module.i32.atomic.wait(
+ module.memory.atomic.wait32(
module.i32.const(0),
module.i32.const(0),
module.i64.const(0)
)
),
module.drop(
- module.i64.atomic.wait(
+ module.memory.atomic.wait64(
module.i32.const(0),
module.i64.const(0),
module.i64.const(0)
)
),
module.drop(
- module.atomic.notify(
+ module.memory.atomic.notify(
module.i32.const(0),
module.i32.const(0)
)