Files
wasm-instrument/tests/expectations/gas/branch_host_fn.wat
T
Sasha Gryaznov 6a79d1d4b8 Charge gas for local variables on the callee side (#38)
Co-authored-by: Alexander Theißen <alex.theissen@me.com>
2022-11-26 16:37:31 +01:00

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
)
)