Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 452 Bytes

loop.md

File metadata and controls

25 lines (20 loc) · 452 Bytes

This test contains three simple examples of the usage of br.

One is located in a loop, and exits it (br 0 would infinitively loop):

loop
	br 1

The second one is located in a block, and also exits it:

block
	br 0

Finally, the third one is located at the top-level:

br 0
$ wasm_interpreter --vr loop.wasm loop_br 1

$ wasm_interpreter --vr loop.wasm block_br 1

$ wasm_interpreter --vr loop.wasm br 1