summaryrefslogtreecommitdiff
path: root/src/wasm-interpreter.h
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2022-07-08 11:42:55 -0700
committerGitHub <noreply@github.com>2022-07-08 11:42:55 -0700
commit75d059ad249b9dcedbaaf858747d60d299269d2c (patch)
tree43545e9c86b62081f6127c9aa3b479cb2921c60b /src/wasm-interpreter.h
parent838e8eed2cea3d7818b19620cdca732b8b05dfca (diff)
downloadbinaryen-75d059ad249b9dcedbaaf858747d60d299269d2c.tar.gz
binaryen-75d059ad249b9dcedbaaf858747d60d299269d2c.tar.bz2
binaryen-75d059ad249b9dcedbaaf858747d60d299269d2c.zip
[Strings] string.eq (#4781)
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 05de81256..02c95957d 100644
--- a/src/wasm-interpreter.h
+++ b/src/wasm-interpreter.h
@@ -1970,6 +1970,9 @@ public:
Flow visitStringConcat(StringConcat* curr) {
WASM_UNREACHABLE("unimplemented string.concat");
}
+ Flow visitStringEq(StringEq* curr) {
+ WASM_UNREACHABLE("unimplemented string.eq");
+ }
virtual void trap(const char* why) { WASM_UNREACHABLE("unimp"); }