summaryrefslogtreecommitdiff
path: root/src/interp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp.h')
-rw-r--r--src/interp.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/interp.h b/src/interp.h
index 8b969aae..d5cf72a1 100644
--- a/src/interp.h
+++ b/src/interp.h
@@ -551,6 +551,9 @@ class Thread {
template <typename R, typename T = R>
Result UnopTrap(UnopTrapFunc<R, T> func) WABT_WARN_UNUSED;
+ template <typename T, typename L, typename R, typename P = R>
+ Result SimdUnop(UnopFunc<R, P> func) WABT_WARN_UNUSED;
+
template <typename R, typename T = R>
Result Binop(BinopFunc<R, T> func) WABT_WARN_UNUSED;
template <typename R, typename T = R>