diff options
author | Heejin Ahn <aheejin@gmail.com> | 2019-03-30 21:29:41 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-30 21:29:41 +0900 |
commit | 812bce93447756891e311334bff413e3b79ed2c7 (patch) | |
tree | c7384776132f2e46c5d2697897b55e593fa38f12 /test/passes/remove-unused-nonfunction-module-elements.wast | |
parent | 3e2529386d221841137bd558fab71c91b5e00f1b (diff) | |
download | binaryen-812bce93447756891e311334bff413e3b79ed2c7.tar.gz binaryen-812bce93447756891e311334bff413e3b79ed2c7.tar.bz2 binaryen-812bce93447756891e311334bff413e3b79ed2c7.zip |
Rename atomic wait/notify instructions (#1972)
This renames the following:
- `i32.wait` -> `i32.atomic.wait`
- `i64.wait` -> `i64.atomic.wait`
- `wake` -> `atomic.notify`
to match the spec.
Diffstat (limited to 'test/passes/remove-unused-nonfunction-module-elements.wast')
-rw-r--r-- | test/passes/remove-unused-nonfunction-module-elements.wast | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/passes/remove-unused-nonfunction-module-elements.wast b/test/passes/remove-unused-nonfunction-module-elements.wast index 910b99431..4370328ce 100644 --- a/test/passes/remove-unused-nonfunction-module-elements.wast +++ b/test/passes/remove-unused-nonfunction-module-elements.wast @@ -128,7 +128,7 @@ (local $0 i32) (local $1 i64) (drop - (i32.wait + (i32.atomic.wait (local.get $0) (local.get $0) (local.get $1) @@ -140,7 +140,7 @@ (memory $0 (shared 23 256)) (export "user" $user) (func $user (result i32) - (wake (i32.const 0) (i32.const 0)) + (atomic.notify (i32.const 0) (i32.const 0)) ) ) (module ;; more use checks |