diff options
author | Alon Zakai <azakai@google.com> | 2022-05-13 10:11:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-13 10:11:01 -0700 |
commit | 48eb700ba16e8c98c4283fdde2064b78c3561fbd (patch) | |
tree | d5506f78d4a17e758f2c5f9793be611432ede356 /src/literal.h | |
parent | 18aa94c087f79da9706e8d3af8104816ee79e573 (diff) | |
download | binaryen-48eb700ba16e8c98c4283fdde2064b78c3561fbd.tar.gz binaryen-48eb700ba16e8c98c4283fdde2064b78c3561fbd.tar.bz2 binaryen-48eb700ba16e8c98c4283fdde2064b78c3561fbd.zip |
[NFC] Make Literal::makeNull take a HeapType (#4664)
Taking a Type is redundant as we only care about the heap type -
the nullability must be Nullable.
This avoids needing an assertion in the function, that is, it makes
the API more type-safe.
Diffstat (limited to 'src/literal.h')
-rw-r--r-- | src/literal.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/literal.h b/src/literal.h index 555f89e5c..4caeab9d4 100644 --- a/src/literal.h +++ b/src/literal.h @@ -248,9 +248,8 @@ public: WASM_UNREACHABLE("unexpected type"); } } - static Literal makeNull(Type type) { - assert(type.isNullable()); - return Literal(type); + static Literal makeNull(HeapType type) { + return Literal(Type(type, Nullable)); } static Literal makeFunc(Name func, Type type = Type::funcref) { return Literal(func, type); |