diff options
Diffstat (limited to 'src/literal.h')
-rw-r--r-- | src/literal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/literal.h b/src/literal.h index b5ffc491b..4b9dfae7c 100644 --- a/src/literal.h +++ b/src/literal.h @@ -80,7 +80,7 @@ public: Literal(int32_t(0)), Literal(int32_t(0)), Literal(int32_t(0))}}); - case Type::except_ref: // there's no except_ref literals + case Type::exnref: // there's no exnref literals case none: case unreachable: WASM_UNREACHABLE(); @@ -430,7 +430,7 @@ template<> struct less<wasm::Literal> { return a.reinterpreti64() < b.reinterpreti64(); case wasm::Type::v128: return memcmp(a.getv128Ptr(), b.getv128Ptr(), 16) < 0; - case wasm::Type::except_ref: // except_ref is an opaque value + case wasm::Type::exnref: // exnref is an opaque value case wasm::Type::none: case wasm::Type::unreachable: return false; |