summaryrefslogtreecommitdiff
path: root/src/ir/module-utils.cpp
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-08-14 13:52:52 -0400
committerGitHub <noreply@github.com>2024-08-14 10:52:52 -0700
commitbcb83fd68710daf1f5ddd8252d0a0a4557494ca7 (patch)
tree827195164876662929107b889374b34ea7779813 /src/ir/module-utils.cpp
parent39553a0247eb39c2f58c883cd6fb6b7e00f559ad (diff)
downloadbinaryen-bcb83fd68710daf1f5ddd8252d0a0a4557494ca7.tar.gz
binaryen-bcb83fd68710daf1f5ddd8252d0a0a4557494ca7.tar.bz2
binaryen-bcb83fd68710daf1f5ddd8252d0a0a4557494ca7.zip
Count supertypes when collecting module types (#6838)
Previously we included supertypes, but did not increase their count. This was done so that the output for the nominal type system, which introduced explicitly supertypes, would more closely match the output with the old equirecursive types system. Neither type system exists anymore and we only support the single, standard isorecursive type system, so we can now properly count supertypes. It turns out it doesn't make much of a difference in the test outputs anyway.
Diffstat (limited to 'src/ir/module-utils.cpp')
-rw-r--r--src/ir/module-utils.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/ir/module-utils.cpp b/src/ir/module-utils.cpp
index 8ad127086..da2d7bb9f 100644
--- a/src/ir/module-utils.cpp
+++ b/src/ir/module-utils.cpp
@@ -516,11 +516,7 @@ InsertOrderedMap<HeapType, size_t> getHeapTypeCounts(Module& wasm,
if (auto super = ht.getDeclaredSuperType()) {
if (!counts.counts.count(*super)) {
noteNewType(*super);
- // We should unconditionally count supertypes, but while the type
- // system is in flux, skip counting them to keep the type orderings in
- // nominal test outputs more similar to the orderings in the
- // equirecursive outputs. FIXME
- counts.include(*super);
+ counts.note(*super);
}
}