Skip to content
This repository was archived by the owner on Oct 3, 2025. It is now read-only.

Commit f6e214b

Browse files
chore: add root package version
Signed-off-by: Henry Gressmann <[email protected]>
1 parent ab78907 commit f6e214b

File tree

4 files changed

+22
-23
lines changed

4 files changed

+22
-23
lines changed

Cargo.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ repository="https://github.com/explodingcamera/tinywasm"
2121

2222
[package]
2323
name="tinywasm-root"
24+
version.workspace=true
2425
publish=false
2526
edition.workspace=true
2627
rust-version.workspace=true

crates/tinywasm/src/interpreter/executor.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,9 +302,7 @@ impl<'store, 'stack> Executor<'store, 'stack> {
302302
LocalCopy128(from, to) => self.exec_local_copy::<Value128>(*from, *to),
303303
LocalCopyRef(from, to) => self.exec_local_copy::<ValueRef>(*from, *to),
304304

305-
Simd(_) => {
306-
unreachable!("unimplemented sidm instruction");
307-
}
305+
Simd(op) => unimplemented!("simd instruction {:?}", op),
308306
};
309307

310308
self.cf.incr_instr_ptr();

crates/tinywasm/src/interpreter/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pub(crate) mod executor;
22
pub(crate) mod num_helpers;
3-
// pub(crate) mod simd;
3+
pub(crate) mod simd;
44
pub(crate) mod stack;
55
mod values;
66

0 commit comments

Comments
 (0)