diff options
author | dcode <dcode@dcode.io> | 2022-09-23 16:23:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-23 07:23:06 -0700 |
commit | e750809428e447396c1568139bf970ce5a1b5aed (patch) | |
tree | 031cc3397198ab8abcbb817af78f4f2d566e5ba5 /src/wasm-type.h | |
parent | 58bedde3ac54f82657d5de092e7142ffb2ff735c (diff) | |
download | binaryen-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.h | 8 |
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; } }; |