diff options
author | Thomas Lively <tlively@google.com> | 2023-04-20 20:33:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-20 20:33:58 -0500 |
commit | bd1822dde2b08c79c6e98667a5317194ca913545 (patch) | |
tree | b549f7bfbdb4a37b347881a4c1d3fd5dfd1037c3 /src/wasm-type.h | |
parent | 2cd0f408f39c78e3bb0f141ee4d1b9ce2a4f1c16 (diff) | |
download | binaryen-bd1822dde2b08c79c6e98667a5317194ca913545.tar.gz binaryen-bd1822dde2b08c79c6e98667a5317194ca913545.tar.bz2 binaryen-bd1822dde2b08c79c6e98667a5317194ca913545.zip |
[NFC] Simplify rec group initialization in wasm-type.cpp (#5683)
Now that we no longer support constructing basic heap types in TypeBuilder, we
can fully initialize rec groups when they are created, rather than having to
initialize them later during the build step after any basic types have been
canonicalized. Alongside that change, also simplify the process of initializing
a type builder slot to avoid completely overwriting the HeapTypeInfo in the slot
and avoid the hacky workarounds that required.
Diffstat (limited to 'src/wasm-type.h')
-rw-r--r-- | src/wasm-type.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wasm-type.h b/src/wasm-type.h index 551096fb5..65fdd5650 100644 --- a/src/wasm-type.h +++ b/src/wasm-type.h @@ -540,6 +540,7 @@ struct Struct { // Prevent accidental copies Struct& operator=(const Struct&) = delete; + Struct& operator=(Struct&&) = default; }; struct Array { @@ -550,6 +551,8 @@ struct Array { bool operator==(const Array& other) const { return element == other.element; } bool operator!=(const Array& other) const { return !(*this == other); } std::string toString() const; + + Array& operator=(const Array& other) = default; }; // TypeBuilder - allows for the construction of recursive types. Contains a |