Files
wasm-instrument/tests/fixtures/stack-height/empty_functions.wat
T
Alexander Theißen 57da96fb50 Consider activation frame for stack height metering (#2)
* Charge a base cost for calling a function

* Added regression test for empty functions

* Satisfy clippy
2022-01-18 18:04:17 +01:00

8 lines
83 B
WebAssembly Text Format

(module
(func (;0;)
call 0
)
(func (;1;) (export "main")
call 0
)
)