diff options
author | Thomas Lively <tlively@google.com> | 2022-12-02 12:24:16 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-02 18:24:16 +0000 |
commit | 99cd20964345f6280cca463b7bca98804a6a24c8 (patch) | |
tree | 36bedd786033670e631372eca67e405553035de5 /src/wasm-type.h | |
parent | e8b41f4a92b8255336888019b5fb6ba014f3c363 (diff) | |
download | binaryen-99cd20964345f6280cca463b7bca98804a6a24c8.tar.gz binaryen-99cd20964345f6280cca463b7bca98804a6a24c8.tar.bz2 binaryen-99cd20964345f6280cca463b7bca98804a6a24c8.zip |
[NFC] Allow TypeBuilder::Entry::subTypeOf to take any HeapType (#5314)
We generalized the underlying API, TypeBuilder::setSubType, to allow it to take
any HeapType as the supertype in #5045. Make the same change now in the helper.
Diffstat (limited to 'src/wasm-type.h')
-rw-r--r-- | src/wasm-type.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h index 140fcf893..cfd57dd02 100644 --- a/src/wasm-type.h +++ b/src/wasm-type.h @@ -679,8 +679,7 @@ struct TypeBuilder { builder.setHeapType(index, array); return *this; } - Entry& subTypeOf(Entry other) { - assert(&builder == &other.builder); + Entry& subTypeOf(HeapType other) { builder.setSubType(index, other); return *this; } |