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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shell-interface.h b/src/shell-interface.h
index 139db23e5..85010a4b2 100644
--- a/src/shell-interface.h
+++ b/src/shell-interface.h
@@ -126,6 +126,7 @@ struct ShellExternalInterface final : ModuleInstance::ExternalInterface {
case i64: globals[import->name] = Literal(int64_t(666)); break;
case f32: globals[import->name] = Literal(float(666.6)); break;
case f64: globals[import->name] = Literal(double(666.6)); break;
+ case v128: assert(false && "v128 not implemented yet");
case none:
case unreachable: WASM_UNREACHABLE();
}