summaryrefslogtreecommitdiff
path: root/src/shell-interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shell-interface.h')
-rw-r--r--src/shell-interface.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/shell-interface.h b/src/shell-interface.h
index 52533f37c..75f8e81b8 100644
--- a/src/shell-interface.h
+++ b/src/shell-interface.h
@@ -114,10 +114,12 @@ struct ShellExternalInterface : ModuleInstance::ExternalInterface {
break;
case v128:
assert(false && "v128 not implemented yet");
+ case funcref:
case anyref:
- assert(false && "anyref not implemented yet");
+ case nullref:
case exnref:
- assert(false && "exnref not implemented yet");
+ globals[import->name] = Literal::makeNullref();
+ break;
case none:
case unreachable:
WASM_UNREACHABLE("unexpected type");
@@ -163,7 +165,7 @@ struct ShellExternalInterface : ModuleInstance::ExternalInterface {
trap("callIndirect: bad # of arguments");
}
for (size_t i = 0; i < params.size(); i++) {
- if (params[i] != arguments[i].type) {
+ if (!Type::isSubType(arguments[i].type, params[i])) {
trap("callIndirect: bad argument type");
}
}