mirror of
https://github.com/pezkuwichain/wasm-instrument.git
synced 2026-05-01 19:07:59 +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>
27 lines
463 B
WebAssembly Text Format
27 lines
463 B
WebAssembly Text Format
(module
|
|
(type (;0;) (func))
|
|
(type (;1;) (func (param i32)))
|
|
(import "env" "gas" (func (;0;) (type 1)))
|
|
(func (;1;) (type 0)
|
|
i32.const 2
|
|
call 0
|
|
i32.const 1
|
|
if ;; label = @1
|
|
i32.const 1
|
|
call 0
|
|
loop ;; label = @2
|
|
i32.const 2
|
|
call 0
|
|
i32.const 123
|
|
drop
|
|
end
|
|
end
|
|
)
|
|
(func (;2;) (type 0)
|
|
i32.const 1
|
|
call 0
|
|
block ;; label = @1
|
|
end
|
|
)
|
|
(export "simple" (func 1))
|
|
) |