From 126b04c37e8b7f790a7cf772121ad2b1f095d18f Mon Sep 17 00:00:00 2001 From: Brad Nelson Date: Tue, 10 Nov 2015 14:57:17 -0800 Subject: Update AstSemantics.md --- AstSemantics.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'AstSemantics.md') 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 -- cgit v1.2.3