mirror of
https://github.com/pezkuwichain/wasm-instrument.git
synced 2026-04-22 03:18:02 +00:00
6a79d1d4b8
Co-authored-by: Alexander Theißen <alex.theissen@me.com>
31 lines
595 B
WebAssembly Text Format
31 lines
595 B
WebAssembly Text Format
(module
|
|
(type (;0;) (func (result i32)))
|
|
(type (;1;) (func (param i64)))
|
|
(import "env" "gas" (func (;0;) (type 1)))
|
|
(func $fibonacci_with_break (;1;) (type 0) (result i32)
|
|
(local i32 i32)
|
|
i64.const 15
|
|
call 0
|
|
block ;; label = @1
|
|
i32.const 0
|
|
local.set 0
|
|
i32.const 1
|
|
local.set 1
|
|
local.get 0
|
|
local.get 1
|
|
local.tee 0
|
|
i32.add
|
|
local.set 1
|
|
i32.const 1
|
|
br_if 0 (;@1;)
|
|
i64.const 5
|
|
call 0
|
|
local.get 0
|
|
local.get 1
|
|
local.tee 0
|
|
i32.add
|
|
local.set 1
|
|
end
|
|
local.get 1
|
|
)
|
|
) |