diff options
author | Alon Zakai <azakai@google.com> | 2023-05-17 09:42:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-17 16:42:58 +0000 |
commit | 071431bac6269ff8bcfa95194c94446314a2394d (patch) | |
tree | 455511db1f4c934d205b9b55ba3e568057e52dce /test/metadce/corners.wast.dced | |
parent | aab5f274773f4e1567b02e6950b4d22119cf801d (diff) | |
download | binaryen-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/metadce/corners.wast.dced')
-rw-r--r-- | test/metadce/corners.wast.dced | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/metadce/corners.wast.dced b/test/metadce/corners.wast.dced index a9ea1a1ca..c6d5d7e74 100644 --- a/test/metadce/corners.wast.dced +++ b/test/metadce/corners.wast.dced @@ -2,8 +2,8 @@ (type $none_=>_none (func)) (import "env" "table" (table $timport$0 10 10 funcref)) (import "env" "STACKTOP" (global $STACKTOP$asm2wasm$import i32)) - (import "env" "imported_twice" (func $imported_twice_a)) - (import "env" "an-imported-table-func" (func $imported_table_func)) + (import "env" "imported_twice" (func $imported_twice_a (type $none_=>_none))) + (import "env" "an-imported-table-func" (func $imported_table_func (type $none_=>_none))) (global $STACKTOP (mut i32) (global.get $STACKTOP$asm2wasm$import)) (elem $0 (i32.const 0) $imported_table_func) (export "stackAlloc" (func $stackAlloc)) |