Replaced explicit truncation on memory store with implicit truncation+comment#85
Merged
sunfishcode merged 2 commits intoWebAssembly:masterfrom Sep 25, 2015
Conversation
ml-proto/src/spec/memory.ml
Outdated
Member
There was a problem hiding this comment.
I apologize for being pedantic, but "truncate" in wasm spec lingo means discarding least-significant digits of a value. How about "this stores just the low 8 bits of "bits", discarding the rest"?
Member
|
lgtm; thanks! Merging based on my own lgtm because this is a minor change that I don't expect will be controversial. |
sunfishcode
added a commit
that referenced
this pull request
Sep 25, 2015
Replaced explicit truncation on memory store with implicit truncation+comment
littledan
pushed a commit
to littledan/spec
that referenced
this pull request
Mar 4, 2018
dhil
pushed a commit
to dhil/webassembly-spec
that referenced
this pull request
Apr 25, 2023
Use plain type substitution instead of type addresses and static/dynamic types
dhil
pushed a commit
to dhil/webassembly-spec
that referenced
this pull request
Oct 21, 2024
dhil
pushed a commit
to dhil/webassembly-spec
that referenced
this pull request
Oct 21, 2024
* Revert "Allow cont ref to be non-null in switch (WebAssembly#85)" This reverts commit 92cbcc5. * Remove other unnecessary `null?` in instruction typing
stevenfontanella
pushed a commit
to stevenfontanella/spec
that referenced
this pull request
Nov 12, 2025
This commit adds `.github/workflows/autoupdate.yml` to this repository which is scheduled to run once a week on Wednesday around noon PST (assuming I got the time zones right). This workflow will run the `./update-testsuite.sh` script and if it makes a commit it'll make a PR to this repository. The motivation for this is to ensure that this repository doesn't lag behind too far upstream proposals and making it as easy as possible to land updates (ideally "just hit the big green button"). This commit updates some words in the `README.md` about the update process and additionally updates the script to not fail if no tests need an update. An example pull request [looks like this][pr] and an example workflow which runs but didn't actually end up updating anything [looks like this][noop] [pr]: alexcrichton/testsuite#1 [noop]: https://github.com/alexcrichton/testsuite/actions/runs/9522240608/job/26251380263
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.
As requested by @sunfishcode here