summaryrefslogtreecommitdiff
path: root/src/wasm-interpreter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm-interpreter.h')
-rw-r--r--src/wasm-interpreter.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wasm-interpreter.h b/src/wasm-interpreter.h
index c1bd06e1c..05de81256 100644
--- a/src/wasm-interpreter.h
+++ b/src/wasm-interpreter.h
@@ -1967,6 +1967,9 @@ public:
Flow visitStringEncode(StringEncode* curr) {
WASM_UNREACHABLE("unimplemented string.encode");
}
+ Flow visitStringConcat(StringConcat* curr) {
+ WASM_UNREACHABLE("unimplemented string.concat");
+ }
virtual void trap(const char* why) { WASM_UNREACHABLE("unimp"); }