summaryrefslogtreecommitdiff
path: root/test/multivalue.wast.fromBinary
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2023-05-17 09:42:58 -0700
committerGitHub <noreply@github.com>2023-05-17 16:42:58 +0000
commit071431bac6269ff8bcfa95194c94446314a2394d (patch)
tree455511db1f4c934d205b9b55ba3e568057e52dce /test/multivalue.wast.fromBinary
parentaab5f274773f4e1567b02e6950b4d22119cf801d (diff)
downloadbinaryen-071431bac6269ff8bcfa95194c94446314a2394d.tar.gz
binaryen-071431bac6269ff8bcfa95194c94446314a2394d.tar.bz2
binaryen-071431bac6269ff8bcfa95194c94446314a2394d.zip
Print function types on function imports in the text format (#5727)
The function type should be printed there just like for non-imported functions.
Diffstat (limited to 'test/multivalue.wast.fromBinary')
-rw-r--r--test/multivalue.wast.fromBinary2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/multivalue.wast.fromBinary b/test/multivalue.wast.fromBinary
index 86a87ecfe..4c79c60bb 100644
--- a/test/multivalue.wast.fromBinary
+++ b/test/multivalue.wast.fromBinary
@@ -7,7 +7,7 @@
(type $none_=>_i32_i64_f32 (func (result i32 i64 f32)))
(type $none_=>_i32 (func (result i32)))
(type $none_=>_f32 (func (result f32)))
- (import "env" "pair" (func $pair (result i32 i64)))
+ (import "env" "pair" (func $pair (type $none_=>_i32_i64) (result i32 i64)))
(global $g1 (mut i32) (i32.const 0))
(global $g2 (mut i64) (i64.const 0))
(global $global$2 i32 (i32.const 0))