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/wasm2js/i64-add-sub.wast | |
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/wasm2js/i64-add-sub.wast')
-rw-r--r-- | test/wasm2js/i64-add-sub.wast | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/wasm2js/i64-add-sub.wast b/test/wasm2js/i64-add-sub.wast index b9ab45b79..1c05a8bf0 100644 --- a/test/wasm2js/i64-add-sub.wast +++ b/test/wasm2js/i64-add-sub.wast @@ -4,10 +4,10 @@ (func $dummy) (func (export "check_add_i64") (param $0 i64) (param $1 i64) (param $r i64) (result i32) - (i64.eq (i64.add (get_local $0) (get_local $1)) (get_local $r))) + (i64.eq (i64.add (local.get $0) (local.get $1)) (local.get $r))) (func (export "check_sub_i64") (param $0 i64) (param $1 i64) (param $r i64) (result i32) - (i64.eq (i64.sub (get_local $0) (get_local $1)) (get_local $r))) + (i64.eq (i64.sub (local.get $0) (local.get $1)) (local.get $r))) ) (assert_return (invoke "check_add_i64" (i32.const 0) (i32.const 0) |