diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2019-01-07 13:24:58 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-07 13:24:58 -0800 |
commit | 7d94900ded8e2e5ce8ef8ee2687528531d8f2a97 (patch) | |
tree | d8bba13d306b0c5ecba384384e602e6cccc83015 /test/stacky.wasm.fromBinary | |
parent | 6f91af190effd7b8a5969314dd4fb3d2ec540524 (diff) | |
download | binaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.tar.gz binaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.tar.bz2 binaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.zip |
Massive renaming (#1855)
Automated renaming according to
https://github.com/WebAssembly/spec/issues/884#issuecomment-426433329.
Diffstat (limited to 'test/stacky.wasm.fromBinary')
-rw-r--r-- | test/stacky.wasm.fromBinary | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/stacky.wasm.fromBinary b/test/stacky.wasm.fromBinary index d76338638..6fd623022 100644 --- a/test/stacky.wasm.fromBinary +++ b/test/stacky.wasm.fromBinary @@ -6,15 +6,15 @@ (local $2 i32) (i32.add (block (result i32) - (set_local $2 - (get_local $0) + (local.set $2 + (local.get $0) ) - (set_local $0 + (local.set $0 (i32.const 100) ) - (get_local $2) + (local.get $2) ) - (get_local $1) + (local.get $1) ) ) ) |