Update the wasm-tools family of crates (#4165)
* Update the wasm-tools family of crates This commit updates these crates as used by Wasmtime for the recently published versions to pull in changes necessary to support the component model. I've split this out from #4005 to make it clear what's impacted here and #4005 can simply rebase on top of this to pick up the necessary changes. * More test fixes
This commit is contained in:
@@ -5,22 +5,22 @@
|
||||
(func (export "size0") (result i32) (memory.size 0))
|
||||
(func (export "load0") (param i32) (result i32)
|
||||
local.get 0
|
||||
i32.load8_s (memory 0)
|
||||
i32.load8_s 0
|
||||
)
|
||||
(func (export "store0") (param i32 i32)
|
||||
local.get 0
|
||||
local.get 1
|
||||
i32.store8 (memory 0)
|
||||
i32.store8 0
|
||||
)
|
||||
(func (export "size1") (result i32) (memory.size 1))
|
||||
(func (export "load1") (param i32) (result i32)
|
||||
local.get 0
|
||||
i32.load8_s (memory 1)
|
||||
i32.load8_s 1
|
||||
)
|
||||
(func (export "store1") (param i32 i32)
|
||||
local.get 0
|
||||
local.get 1
|
||||
i32.store8 (memory 1)
|
||||
i32.store8 1
|
||||
)
|
||||
|
||||
(data (memory 0) (i32.const 0x1000) "\01\02\03\04")
|
||||
|
||||
Reference in New Issue
Block a user