Closed
Conversation
Member
Author
|
As with #403, I'm closing this for now. |
eqrion
pushed a commit
to eqrion/wasm-spec
that referenced
this pull request
Nov 25, 2019
* [interpreter] Simplify zero-len and drop semantics * Update overview * [spec] Change drop semantics * [spec] Forgot to adjust prose for *.init ops * [test] Update generated tests for OOBs and dropping changes (WebAssembly#131)
Connicpu
pushed a commit
to Connicpu/wasm-spec
that referenced
this pull request
May 11, 2020
`*.atomic.wait` only waits if the loaded value is equal to the expected value. So we can test some simple cases without threads by ensuring that the loaded value doesn't match. Similarly `atomic.notify` will do nothing if the count is 0.
dhil
pushed a commit
to dhil/webassembly-spec
that referenced
this pull request
Mar 2, 2023
This was suggested here: WebAssembly/exception-handling#131 (comment) Closes WebAssembly#131.
alexcrichton
pushed a commit
to WebAssembly/wide-arithmetic
that referenced
this pull request
Sep 19, 2025
Properly distinguish and handle multiple numeric types
stevenfontanella
pushed a commit
to stevenfontanella/spec
that referenced
this pull request
Nov 12, 2025
Update repos:
wasm-3.0:
WebAssembly@7ddfe8f
This change was automatically generated by `update-testsuite.py`
Co-authored-by: WebAssembly/testsuite auto-update <github-actions@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This implements
br_ifandbr_switch, essentially as was suggested in WebAssembly/design#299. This implements them as spec syntax sugar on top of the existingifandswitchfor now.