summaryrefslogtreecommitdiff
path: root/test/passes/ssa_fuzz-exec_enable-threads.txt
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2021-02-23 22:46:13 +0000
committerGitHub <noreply@github.com>2021-02-23 22:46:13 +0000
commita7c66754ba86854ea3e0381986796e6565b93199 (patch)
tree940abdbce4bcf5a10eab090c6b67c37dbb5d2c3b /test/passes/ssa_fuzz-exec_enable-threads.txt
parentc127eccf753ab86a4d5deecbd0f3fa78a83e42ad (diff)
downloadbinaryen-a7c66754ba86854ea3e0381986796e6565b93199.tar.gz
binaryen-a7c66754ba86854ea3e0381986796e6565b93199.tar.bz2
binaryen-a7c66754ba86854ea3e0381986796e6565b93199.zip
Properly use text format type names in printing (#3591)
This adds a TypeNames entry to modules, which can store names for types. So far this PR uses that to store type names from text format. Future PRs will add support for field names and for the binary format. (Field names are added to wasm.h here to see if we agree on this direction.) Most of the work here is threading a module through the various functions in Print.cpp. This keeps the module optional, so that we can still print an expression independently of a module, which has always been the case, and which I think we should keep (but, if a module was mandatory perhaps this would be a little simpler, and could be refactored into a form that depends on that). 99% of this diff are test updates, since almost all our tests use the text format, and many of them specify a type name but we used to ignore it. This is a step towards a proper solution for #3589
Diffstat (limited to 'test/passes/ssa_fuzz-exec_enable-threads.txt')
-rw-r--r--test/passes/ssa_fuzz-exec_enable-threads.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/passes/ssa_fuzz-exec_enable-threads.txt b/test/passes/ssa_fuzz-exec_enable-threads.txt
index b8e9e9cf6..40845e209 100644
--- a/test/passes/ssa_fuzz-exec_enable-threads.txt
+++ b/test/passes/ssa_fuzz-exec_enable-threads.txt
@@ -1,7 +1,7 @@
[fuzz-exec] calling func_0
[fuzz-exec] note result: func_0 => 16384
(module
- (type $none_=>_i32 (func (result i32)))
+ (type $0 (func (result i32)))
(memory $0 (shared 1 1))
(table $0 0 0 funcref)
(export "func_0" (func $0))