diff options
Diffstat (limited to 'src/passes/FuncCastEmulation.cpp')
-rw-r--r-- | src/passes/FuncCastEmulation.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/passes/FuncCastEmulation.cpp b/src/passes/FuncCastEmulation.cpp index 160895f23..101834790 100644 --- a/src/passes/FuncCastEmulation.cpp +++ b/src/passes/FuncCastEmulation.cpp @@ -67,7 +67,8 @@ static Expression* toABI(Expression* value, Module* module) { } case Type::funcref: case Type::externref: - case Type::exnref: { + case Type::exnref: + case Type::anyref: { WASM_UNREACHABLE("reference types cannot be converted to i64"); } case Type::none: { @@ -110,7 +111,8 @@ static Expression* fromABI(Expression* value, Type type, Module* module) { } case Type::funcref: case Type::externref: - case Type::exnref: { + case Type::exnref: + case Type::anyref: { WASM_UNREACHABLE("reference types cannot be converted from i64"); } case Type::none: { |