diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2024-10-24 19:47:18 +0200 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2024-10-24 19:47:18 +0200 |
| commit | f6e214ba050010b9566e7f2a99cfe370dc49ce43 (patch) | |
| tree | b6b31a69619644db18682317ad2d08afd9c46b24 /crates | |
| parent | ab7890764023a751ae33b095e206102d3774249f (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.rs | 4 | ||||
| -rw-r--r-- | crates/tinywasm/src/interpreter/mod.rs | 2 |
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; |
