diff options
author | Alon Zakai <azakai@google.com> | 2021-02-25 21:15:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-25 13:15:41 -0800 |
commit | 04c1515acb354714af3d07fe2a3b65b2bb0398ab (patch) | |
tree | e73935d0407777fe1ae2742717f00ebc4f336928 /test/tail-call.wast.fromBinary | |
parent | c64a50d46cd3b5d5c19411b3ac4d8f0ba10c2efd (diff) | |
download | binaryen-04c1515acb354714af3d07fe2a3b65b2bb0398ab.tar.gz binaryen-04c1515acb354714af3d07fe2a3b65b2bb0398ab.tar.bz2 binaryen-04c1515acb354714af3d07fe2a3b65b2bb0398ab.zip |
Support Type names in the Names section (#3615)
Diffstat (limited to 'test/tail-call.wast.fromBinary')
-rw-r--r-- | test/tail-call.wast.fromBinary | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tail-call.wast.fromBinary b/test/tail-call.wast.fromBinary index 58fad5d61..81a5c4f9f 100644 --- a/test/tail-call.wast.fromBinary +++ b/test/tail-call.wast.fromBinary @@ -1,12 +1,12 @@ (module - (type $none_=>_none (func)) + (type $void (func)) (table $0 1 1 funcref) (elem (i32.const 0) $foo) (func $foo (return_call $bar) ) (func $bar - (return_call_indirect $0 (type $none_=>_none) + (return_call_indirect $0 (type $void) (i32.const 0) ) ) |