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/ctor-eval/ignore-external-input.wast.out | |
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/ctor-eval/ignore-external-input.wast.out')
-rw-r--r-- | test/ctor-eval/ignore-external-input.wast.out | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ctor-eval/ignore-external-input.wast.out b/test/ctor-eval/ignore-external-input.wast.out index c79da93ed..e547515ab 100644 --- a/test/ctor-eval/ignore-external-input.wast.out +++ b/test/ctor-eval/ignore-external-input.wast.out @@ -1,7 +1,7 @@ (module (type $none_=>_i32 (func (result i32))) (type $none_=>_none (func)) - (import "wasi_snapshot_preview1" "something_else" (func $wasi_something_else (result i32))) + (import "wasi_snapshot_preview1" "something_else" (func $wasi_something_else (type $none_=>_i32) (result i32))) (memory $0 256 256) (data $0 (i32.const 28) "aaaa") (export "test3" (func $3)) |