diff options
Diffstat (limited to 'src/interp/interp.h')
-rw-r--r-- | src/interp/interp.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/interp/interp.h b/src/interp/interp.h index 16653abb..ec484f19 100644 --- a/src/interp/interp.h +++ b/src/interp/interp.h @@ -604,6 +604,9 @@ class Thread { template <typename T, typename L, typename R, typename P = R> Result SimdBinop(BinopFunc<R, P> func) WABT_WARN_UNUSED; + template <typename T, typename L, typename R, typename P = R> + Result SimdRelBinop(BinopFunc<R, P> func) WABT_WARN_UNUSED; + Environment* env_ = nullptr; std::vector<Value> value_stack_; std::vector<IstreamOffset> call_stack_; |