Skip to content

Simplify br_if by removing its value operand. #709

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions AstSemantics.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,9 +278,8 @@ further see the parallel, note that a `br` to a `block`'s label is functionally
equivalent to a labeled `break` in high-level languages in that a `br` simply
breaks out of a `block`.

Branches that exit a `block`, `loop`, or `br_table` may take a subexpression
that yields a value for the exited construct. If present, it is the first operand
before any others.
`br` and `br_table` may take a subexpression that yields a value for the exited
construct. If present, it is the first operand before any others.

### Yielding values from control constructs

Expand Down