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/noffi_i64.fromasm.imprecise.no-opts | |
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/noffi_i64.fromasm.imprecise.no-opts')
-rw-r--r-- | test/noffi_i64.fromasm.imprecise.no-opts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/noffi_i64.fromasm.imprecise.no-opts b/test/noffi_i64.fromasm.imprecise.no-opts index be0294bb1..c93e6b442 100644 --- a/test/noffi_i64.fromasm.imprecise.no-opts +++ b/test/noffi_i64.fromasm.imprecise.no-opts @@ -1,7 +1,7 @@ (module (type $FUNCSIG$jj (func (param i64) (result i64))) (import "env" "memory" (memory $memory 256 256)) - (import "env" "table" (table $table 0 0 anyfunc)) + (import "env" "table" (table $table 0 0 funcref)) (import "env" "__memory_base" (global $__memory_base i32)) (import "env" "__table_base" (global $__table_base i32)) (import "env" "_importll" (func $importll (param i64) (result i64))) @@ -9,14 +9,14 @@ (export "_main" (func $main)) (func $add (; 1 ;) (param $a i64) (param $b i64) (result i64) (local $c i64) - (set_local $c + (local.set $c (i64.add - (get_local $b) - (get_local $a) + (local.get $b) + (local.get $a) ) ) (return - (get_local $c) + (local.get $c) ) ) (func $main (; 2 ;) (result i32) |