diff options
author | Derek Schuff <dschuff@chromium.org> | 2017-11-13 15:18:30 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-13 15:18:30 -0800 |
commit | ca09203416a556f0a895f6cfa32426bdd46f9824 (patch) | |
tree | 263697a28594c67424472a7410d256994476f4de /test/memorygrowth.fromasm.imprecise.no-opts | |
parent | 20b8b02ff331f8b59d44e2a72ebd6f81e08f49ac (diff) | |
download | binaryen-ca09203416a556f0a895f6cfa32426bdd46f9824.tar.gz binaryen-ca09203416a556f0a895f6cfa32426bdd46f9824.tar.bz2 binaryen-ca09203416a556f0a895f6cfa32426bdd46f9824.zip |
Update call_indirect text syntax to match spec update (#1281)
Function type gets its own element rather than being a part of the call_indirect
(see WebAssembly/spec#599)
Diffstat (limited to 'test/memorygrowth.fromasm.imprecise.no-opts')
-rw-r--r-- | test/memorygrowth.fromasm.imprecise.no-opts | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/memorygrowth.fromasm.imprecise.no-opts b/test/memorygrowth.fromasm.imprecise.no-opts index 86b8b1266..86256f15a 100644 --- a/test/memorygrowth.fromasm.imprecise.no-opts +++ b/test/memorygrowth.fromasm.imprecise.no-opts @@ -9839,7 +9839,7 @@ ) (block (set_local $h - (call_indirect $FUNCSIG$iiii + (call_indirect (type $FUNCSIG$iiii) (get_local $c) (get_local $a) (get_local $b) @@ -9928,7 +9928,7 @@ ) (if (i32.lt_u - (call_indirect $FUNCSIG$iiii + (call_indirect (type $FUNCSIG$iiii) (get_local $c) (get_local $a) (get_local $q) @@ -10552,7 +10552,7 @@ ) (if (i32.eq - (call_indirect $FUNCSIG$iiii + (call_indirect (type $FUNCSIG$iiii) (get_local $a) (get_local $d) (i32.const 1) @@ -10621,7 +10621,7 @@ ) (block (drop - (call_indirect $FUNCSIG$iiii + (call_indirect (type $FUNCSIG$iiii) (get_local $a) (i32.const 0) (i32.const 0) @@ -10691,7 +10691,7 @@ (get_local $h) ) (drop - (call_indirect $FUNCSIG$iiii + (call_indirect (type $FUNCSIG$iiii) (get_local $a) (i32.sub (get_local $f) @@ -11802,7 +11802,7 @@ ) (func $lb (; 33 ;) (param $a i32) (param $b i32) (param $c i32) (param $d i32) (result i32) (return - (call_indirect $FUNCSIG$iiii + (call_indirect (type $FUNCSIG$iiii) (get_local $b) (get_local $c) (get_local $d) @@ -11880,7 +11880,7 @@ ) (func $kb (; 38 ;) (param $a i32) (param $b i32) (result i32) (return - (call_indirect $FUNCSIG$ii + (call_indirect (type $FUNCSIG$ii) (get_local $b) (i32.add (i32.and @@ -11909,7 +11909,7 @@ (return) ) (func $mb (; 40 ;) (param $a i32) (param $b i32) - (call_indirect $FUNCSIG$vi + (call_indirect (type $FUNCSIG$vi) (get_local $b) (i32.add (i32.and |