diff options
| author | Dan Gohman <sunfish@mozilla.com> | 2017-03-29 11:35:00 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-29 11:35:00 -0700 |
| commit | a47b1454b92d51e84741de265698bd8bf87f1f1c (patch) | |
| tree | c69f9ba898433fb784c57cb6102475fd60c57942 /Semantics.md | |
| parent | 3fb9bce77588f45912e791f60daede1183112772 (diff) | |
| download | nanowasm-design-a47b1454b92d51e84741de265698bd8bf87f1f1c.tar.gz | |
Clarify the behavior of partially out of bounds stores. (#1025)
Diffstat (limited to 'Semantics.md')
| -rw-r--r-- | Semantics.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Semantics.md b/Semantics.md index dbb7280..19cd796 100644 --- a/Semantics.md +++ b/Semantics.md @@ -213,7 +213,8 @@ greatest alignment values practical, while always avoiding misaligned accesses. ### Out of Bounds -Out of bounds accesses trap. +Out of bounds accesses trap. If the access is a store, if any of the accessed +bytes are out of bounds, none of the bytes are modified. ### Resizing |
