aboutsummaryrefslogtreecommitdiff
path: root/AstSemantics.md
diff options
context:
space:
mode:
authorDan Gohman <sunfish@mozilla.com>2015-11-10 15:12:41 -0800
committerDan Gohman <sunfish@mozilla.com>2015-11-10 15:12:41 -0800
commitce4dd7ea362e570ae07597f000fca9ea760233a0 (patch)
tree96ee1b88e71cd164c06d54bbacd5caaacfd86b1f /AstSemantics.md
parent6e886877664d0034048fcac2dcb88e18b768fdcf (diff)
parent126b04c37e8b7f790a7cf772121ad2b1f095d18f (diff)
downloadnanowasm-design-ce4dd7ea362e570ae07597f000fca9ea760233a0.tar.gz
Merge pull request #459 from WebAssembly/clarify-logical
Update AstSemantics.md
Diffstat (limited to 'AstSemantics.md')
-rw-r--r--AstSemantics.md6
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