aboutsummaryrefslogtreecommitdiff
path: root/AstSemantics.md
diff options
context:
space:
mode:
Diffstat (limited to 'AstSemantics.md')
-rw-r--r--AstSemantics.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/AstSemantics.md b/AstSemantics.md
index 259508d..1560df8 100644
--- a/AstSemantics.md
+++ b/AstSemantics.md
@@ -405,6 +405,9 @@ Min, Max, MinNum, and MaxNum operations would treat -0 as being effectively less
## Datatype conversions, truncations, reinterpretations, promotions, and demotions
+ * Int32FromInt64 - truncate a 64-bit signed integer to a 32-bit signed integer
+ * Int64FromInt32 - sign-extend a 32-bit signed integer to a 64-bit signed integer
+ * Uint64FromuInt32 - zero-extend a 32-bit unsigned integer to a 64-bit unsigned integer
* Int32FromFloat64 - truncate a 64-bit float to a 32-bit signed integer
* Int32FromFloat32 - truncate a 32-bit float to a 32-bit signed integer
* Int64FromFloat64 - truncate a 64-bit float to a 64-bit signed integer