diff options
author | Alon Zakai <azakai@google.com> | 2021-09-10 09:39:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-10 09:39:10 -0700 |
commit | 3ed93d00b8f7c0d1f4ab2086b386836f2914dc0e (patch) | |
tree | 0511118fad9439fe6995ff0fe1e67b3231b67c14 /src/ir/global-utils.h | |
parent | 23e452a5c89cc520a1d08bb465785bcb79a43baa (diff) | |
download | binaryen-3ed93d00b8f7c0d1f4ab2086b386836f2914dc0e.tar.gz binaryen-3ed93d00b8f7c0d1f4ab2086b386836f2914dc0e.tar.bz2 binaryen-3ed93d00b8f7c0d1f4ab2086b386836f2914dc0e.zip |
[Wasm GC] ArrayInit support (#4138)
array.init is like array.new_with_rtt except that it takes
as arguments the values to initialize the array with (as opposed to
a size and an optional initial value).
Spec: https://docs.google.com/document/d/1afthjsL_B9UaMqCA5ekgVmOm75BVFu6duHNsN9-gnXw/edit#
Diffstat (limited to 'src/ir/global-utils.h')
-rw-r--r-- | src/ir/global-utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir/global-utils.h b/src/ir/global-utils.h index cf0c8e1a9..34c0e56cf 100644 --- a/src/ir/global-utils.h +++ b/src/ir/global-utils.h @@ -65,7 +65,7 @@ inline bool canInitializeGlobal(Expression* curr) { } if (Properties::isSingleConstantExpression(curr) || curr->is<GlobalGet>() || curr->is<RttCanon>() || curr->is<RttSub>() || curr->is<StructNew>() || - curr->is<ArrayNew>() || curr->is<I31New>()) { + curr->is<ArrayNew>() || curr->is<ArrayInit>() || curr->is<I31New>()) { for (auto* child : ChildIterator(curr)) { if (!canInitializeGlobal(child)) { return false; |