summaryrefslogtreecommitdiff
path: root/src/wasm-type.h
diff options
context:
space:
mode:
authordcode <dcode@dcode.io>2022-09-23 16:23:06 +0200
committerGitHub <noreply@github.com>2022-09-23 07:23:06 -0700
commite750809428e447396c1568139bf970ce5a1b5aed (patch)
tree031cc3397198ab8abcbb817af78f4f2d566e5ba5 /src/wasm-type.h
parent58bedde3ac54f82657d5de092e7142ffb2ff735c (diff)
downloadbinaryen-e750809428e447396c1568139bf970ce5a1b5aed.tar.gz
binaryen-e750809428e447396c1568139bf970ce5a1b5aed.tar.bz2
binaryen-e750809428e447396c1568139bf970ce5a1b5aed.zip
[C API] Make TypeBuilderSetSubType take a heap type (#5045)
Fixes #5041
Diffstat (limited to 'src/wasm-type.h')
-rw-r--r--src/wasm-type.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h
index 778318794..940009cbe 100644
--- a/src/wasm-type.h
+++ b/src/wasm-type.h
@@ -599,9 +599,9 @@ struct TypeBuilder {
Type getTempRefType(HeapType heapType, Nullability nullable);
// In nominal mode, or for nominal types, declare the HeapType being built at
- // index `i` to be an immediate subtype of the HeapType being built at index
- // `j`. Does nothing for equirecursive types.
- void setSubType(size_t i, size_t j);
+ // index `i` to be an immediate subtype of the given HeapType. Does nothing
+ // for equirecursive types.
+ void setSubType(size_t i, HeapType super);
// Create a new recursion group covering slots [i, i + length). Groups must
// not overlap or go out of bounds.
@@ -669,7 +669,7 @@ struct TypeBuilder {
}
Entry& subTypeOf(Entry other) {
assert(&builder == &other.builder);
- builder.setSubType(index, other.index);
+ builder.setSubType(index, other);
return *this;
}
};