From f6e214ba050010b9566e7f2a99cfe370dc49ce43 Mon Sep 17 00:00:00 2001 From: Henry Gressmann Date: Thu, 24 Oct 2024 19:47:18 +0200 Subject: chore: add root package version Signed-off-by: Henry Gressmann --- crates/tinywasm/src/interpreter/executor.rs | 4 +--- crates/tinywasm/src/interpreter/mod.rs | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'crates') diff --git a/crates/tinywasm/src/interpreter/executor.rs b/crates/tinywasm/src/interpreter/executor.rs index f8e17f3..774927c 100644 --- a/crates/tinywasm/src/interpreter/executor.rs +++ b/crates/tinywasm/src/interpreter/executor.rs @@ -302,9 +302,7 @@ impl<'store, 'stack> Executor<'store, 'stack> { LocalCopy128(from, to) => self.exec_local_copy::(*from, *to), LocalCopyRef(from, to) => self.exec_local_copy::(*from, *to), - Simd(_) => { - unreachable!("unimplemented sidm instruction"); - } + Simd(op) => unimplemented!("simd instruction {:?}", op), }; self.cf.incr_instr_ptr(); diff --git a/crates/tinywasm/src/interpreter/mod.rs b/crates/tinywasm/src/interpreter/mod.rs index c97708e..e5c1081 100644 --- a/crates/tinywasm/src/interpreter/mod.rs +++ b/crates/tinywasm/src/interpreter/mod.rs @@ -1,6 +1,6 @@ pub(crate) mod executor; pub(crate) mod num_helpers; -// pub(crate) mod simd; +pub(crate) mod simd; pub(crate) mod stack; mod values; -- cgit v1.3.1