br
Die br
-Anweisung verzweigt zu einer Schleife, einem Block oder einer if-Anweisung.
Andere Varianten von br
sind br_if
für die Verzweigung basierend auf einer Bedingung und br_table
für die Verzweigung zu verschiedenen Blöcken basierend auf einem Argument.
Probieren Sie es aus
Syntax
wasm
;; label the loop so that it can be branched to
(loop $my_loop
;; branch to the loop.
;; most of the time you'll want to put this in an if statement and only branch on condition,
;; otherwise you have an infinite loop.
br $my_loop
)
Anweisung | Binärer Opcode |
---|---|
br |
0x0c |
br_if |
0x0d |
br_table |
0x0e |