diff options
author | Alon Zakai <azakai@google.com> | 2024-06-27 10:25:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-27 10:25:05 -0700 |
commit | 53712b6d6e93449a6faf18a55e0fb29022f158df (patch) | |
tree | 2e110e33c202f0f7294bef16eb4a77d982fa498e /src/wasm-type.h | |
parent | 636d1b2af6f349a9c7fca908bad05108419835e3 (diff) | |
download | binaryen-53712b6d6e93449a6faf18a55e0fb29022f158df.tar.gz binaryen-53712b6d6e93449a6faf18a55e0fb29022f158df.tar.bz2 binaryen-53712b6d6e93449a6faf18a55e0fb29022f158df.zip |
[NFC] Add HeapType::getFeatures() (#6707)
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 51d945b53..69b50c07f 100644 --- a/src/wasm-type.h +++ b/src/wasm-type.h @@ -451,6 +451,9 @@ public: // Return the LUB of two HeapTypes, which may or may not exist. static std::optional<HeapType> getLeastUpperBound(HeapType a, HeapType b); + // Returns the feature set required to use this type. + FeatureSet getFeatures() const; + // Helper allowing the value of `print(...)` to be sent to an ostream. Stores // a `TypeID` because `Type` is incomplete at this point and using a reference // makes it less convenient to use. |