mirror of
https://github.com/pezkuwichain/wasm-instrument.git
synced 2026-06-18 22:11:01 +00:00
4713aa760f
* Update wasmparser requirement from 0.82 to 0.84 Updates the requirements on [wasmparser](https://github.com/bytecodealliance/wasm-tools) to permit the latest version. - [Release notes](https://github.com/bytecodealliance/wasm-tools/releases) - [Commits](https://github.com/bytecodealliance/wasm-tools/compare/wasmparser-0.82.0...wasmparser-0.84.0) --- updated-dependencies: - dependency-name: wasmparser dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Adapt tests to new wasmparser Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alexander Theißen <alex.theissen@me.com>
22 lines
481 B
WebAssembly Text Format
22 lines
481 B
WebAssembly Text Format
(module
|
|
(type (;0;) (func (param i32 i32) (result i32)))
|
|
(type (;1;) (func (param i32)))
|
|
(import "env" "gas" (func $add_locals (type 1)))
|
|
(func $add (type 0) (param $x i32) (param $y i32) (result i32)
|
|
(local i32)
|
|
i32.const 5
|
|
call $add_locals
|
|
local.get $x
|
|
local.get $y
|
|
call 2
|
|
local.set 2
|
|
local.get 2
|
|
)
|
|
(func (;2;) (type 0) (param i32 i32) (result i32)
|
|
i32.const 3
|
|
call $add_locals
|
|
local.get 0
|
|
local.get 1
|
|
i32.add
|
|
)
|
|
) |