summaryrefslogtreecommitdiff
path: root/src/passes/ConstHoisting.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/passes/ConstHoisting.cpp')
-rw-r--r--src/passes/ConstHoisting.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/passes/ConstHoisting.cpp b/src/passes/ConstHoisting.cpp
index c0798fe78..77ac5d251 100644
--- a/src/passes/ConstHoisting.cpp
+++ b/src/passes/ConstHoisting.cpp
@@ -92,6 +92,10 @@ private:
size = getTypeSize(value.type);
break;
}
+ case v128: {
+ // v128 not implemented yet
+ return false;
+ }
case none:
case unreachable: {
WASM_UNREACHABLE();