summaryrefslogtreecommitdiff
path: root/src/wasm-js.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm-js.cpp')
-rw-r--r--src/wasm-js.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wasm-js.cpp b/src/wasm-js.cpp
index 6e4b03aca..a6e751dcc 100644
--- a/src/wasm-js.cpp
+++ b/src/wasm-js.cpp
@@ -253,6 +253,7 @@ extern "C" void EMSCRIPTEN_KEEPALIVE instantiate() {
case i64: WASM_UNREACHABLE();
case f32: return Literal((float)ret);
case f64: return Literal((double)ret);
+ case v128: assert(false && "v128 not implemented yet");
case unreachable: WASM_UNREACHABLE();
}
WASM_UNREACHABLE();