diff options
author | Alon Zakai <azakai@google.com> | 2021-01-28 00:18:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-27 16:18:43 -0800 |
commit | 53c471a445ef26eac7befc3f3a5e0a53870df8cb (patch) | |
tree | 419fb53072864affda454f942528416c258136c8 /src/wasm-builder.h | |
parent | a5aa66c52e0b92597a3b90cf34ccc3b7dee775d0 (diff) | |
download | binaryen-53c471a445ef26eac7befc3f3a5e0a53870df8cb.tar.gz binaryen-53c471a445ef26eac7befc3f3a5e0a53870df8cb.tar.bz2 binaryen-53c471a445ef26eac7befc3f3a5e0a53870df8cb.zip |
[GC] Update br_on_cast: the text format also no longer has a heap type (#3523)
As a result, we cannot handle a br_on_cast with an unreachable RTT. The
binary format solves the problem by ignoring unreachable code, and this makes
the text format do the same.
A nice benefit of this is that we can remove the castType extra field.
Diffstat (limited to 'src/wasm-builder.h')
-rw-r--r-- | src/wasm-builder.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/wasm-builder.h b/src/wasm-builder.h index 6716bca20..516d1cc15 100644 --- a/src/wasm-builder.h +++ b/src/wasm-builder.h @@ -709,11 +709,9 @@ public: ret->finalize(); return ret; } - BrOnCast* - makeBrOnCast(Name name, HeapType heapType, Expression* ref, Expression* rtt) { + BrOnCast* makeBrOnCast(Name name, Expression* ref, Expression* rtt) { auto* ret = wasm.allocator.alloc<BrOnCast>(); ret->name = name; - ret->castType = Type(heapType, Nullable); ret->ref = ref; ret->rtt = rtt; ret->finalize(); |