summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2024-10-24 19:47:18 +0200
committerHenry Gressmann <mail@henrygressmann.de>2024-10-24 19:47:18 +0200
commitf6e214ba050010b9566e7f2a99cfe370dc49ce43 (patch)
treeb6b31a69619644db18682317ad2d08afd9c46b24 /crates
parentab7890764023a751ae33b095e206102d3774249f (diff)
chore: add root package version
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates')
-rw-r--r--crates/tinywasm/src/interpreter/executor.rs4
-rw-r--r--crates/tinywasm/src/interpreter/mod.rs2
2 files changed, 2 insertions, 4 deletions
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::<Value128>(*from, *to),
LocalCopyRef(from, to) => self.exec_local_copy::<ValueRef>(*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;