diff options
| author | Dan Gohman <sunfish@mozilla.com> | 2015-11-10 15:12:41 -0800 |
|---|---|---|
| committer | Dan Gohman <sunfish@mozilla.com> | 2015-11-10 15:12:41 -0800 |
| commit | ce4dd7ea362e570ae07597f000fca9ea760233a0 (patch) | |
| tree | 96ee1b88e71cd164c06d54bbacd5caaacfd86b1f /AstSemantics.md | |
| parent | 6e886877664d0034048fcac2dcb88e18b768fdcf (diff) | |
| parent | 126b04c37e8b7f790a7cf772121ad2b1f095d18f (diff) | |
| download | nanowasm-design-ce4dd7ea362e570ae07597f000fca9ea760233a0.tar.gz | |
Merge pull request #459 from WebAssembly/clarify-logical
Update AstSemantics.md
Diffstat (limited to 'AstSemantics.md')
| -rw-r--r-- | AstSemantics.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/AstSemantics.md b/AstSemantics.md index 9aabf87..4c02d9c 100644 --- a/AstSemantics.md +++ b/AstSemantics.md @@ -363,9 +363,9 @@ results into the result type. * `i32.div_u`: unsigned division (result is [floored](https://en.wikipedia.org/wiki/Floor_and_ceiling_functions)) * `i32.rem_s`: signed remainder (result has the sign of the dividend) * `i32.rem_u`: unsigned remainder - * `i32.and`: sign-agnostic logical and - * `i32.or`: sign-agnostic inclusive or - * `i32.xor`: sign-agnostic exclusive or + * `i32.and`: sign-agnostic bitwise and + * `i32.or`: sign-agnostic bitwise inclusive or + * `i32.xor`: sign-agnostic bitwise exclusive or * `i32.shl`: sign-agnostic shift left * `i32.shr_u`: zero-replicating (logical) shift right * `i32.shr_s`: sign-replicating (arithmetic) shift right |
