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/two_sides.fromasm.clamp.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/two_sides.fromasm.clamp.no-opts')
-rw-r--r-- | test/two_sides.fromasm.clamp.no-opts | 72 |
1 files changed, 36 insertions, 36 deletions
diff --git a/test/two_sides.fromasm.clamp.no-opts b/test/two_sides.fromasm.clamp.no-opts index 0a6bc5137..0034f3a53 100644 --- a/test/two_sides.fromasm.clamp.no-opts +++ b/test/two_sides.fromasm.clamp.no-opts @@ -1,30 +1,30 @@ (module (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)) (export "_test" (func $_test)) (func $f64-to-int (; 0 ;) (param $0 f64) (result i32) (if (result i32) (f64.ne - (get_local $0) - (get_local $0) + (local.get $0) + (local.get $0) ) (i32.const -2147483648) (if (result i32) (f64.ge - (get_local $0) + (local.get $0) (f64.const 2147483648) ) (i32.const -2147483648) (if (result i32) (f64.le - (get_local $0) + (local.get $0) (f64.const -2147483649) ) (i32.const -2147483648) - (i32.trunc_s/f64 - (get_local $0) + (i32.trunc_f64_s + (local.get $0) ) ) ) @@ -34,74 +34,74 @@ (local $d6 f64) (if (i32.eqz - (get_local $i5) + (local.get $i5) ) (block - (set_local $d6 - (f64.convert_s/i32 + (local.set $d6 + (f64.convert_i32_s (i32.mul - (get_local $i4) - (get_local $i3) + (local.get $i4) + (local.get $i3) ) ) ) - (set_local $d6 + (local.set $d6 (f64.mul (f64.add - (f64.convert_s/i32 - (get_local $i3) + (f64.convert_i32_s + (local.get $i3) ) - (get_local $d6) + (local.get $d6) ) (f64.add - (f64.convert_s/i32 - (get_local $i4) + (f64.convert_i32_s + (local.get $i4) ) - (get_local $d6) + (local.get $d6) ) ) ) - (set_local $i5 + (local.set $i5 (call $f64-to-int - (get_local $d6) + (local.get $d6) ) ) (return - (get_local $i5) + (local.get $i5) ) ) (block - (set_local $d6 - (f64.convert_s/i32 + (local.set $d6 + (f64.convert_i32_s (i32.mul - (get_local $i2) - (get_local $i1) + (local.get $i2) + (local.get $i1) ) ) ) - (set_local $d6 + (local.set $d6 (f64.mul (f64.add - (f64.convert_s/i32 - (get_local $i3) + (f64.convert_i32_s + (local.get $i3) ) - (get_local $d6) + (local.get $d6) ) (f64.add - (get_local $d6) - (f64.convert_s/i32 - (get_local $i4) + (local.get $d6) + (f64.convert_i32_s + (local.get $i4) ) ) ) ) - (set_local $i5 + (local.set $i5 (call $f64-to-int - (get_local $d6) + (local.get $d6) ) ) (return - (get_local $i5) + (local.get $i5) ) ) ) |