Fix typo in sadd_sat instruction definition

This commit is contained in:
Andrew Brown
2020-05-25 20:36:58 -07:00
committed by Benjamin Bouvier
parent 51f9ac2150
commit c92917de15

View File

@@ -2265,7 +2265,7 @@ pub(crate) fn define(
This is similar to `iadd` but the operands are interpreted as signed integers and their This is similar to `iadd` but the operands are interpreted as signed integers and their
summed result, instead of wrapping, will be saturated to the lowest or highest summed result, instead of wrapping, will be saturated to the lowest or highest
signed integer for the controlling type (e.g. `0x80` or `0x7F` for i8). For example, signed integer for the controlling type (e.g. `0x80` or `0x7F` for i8). For example,
since an `iadd_ssat.i8` of `0x70` and `0x70` is greater than `0x7F`, the result will be since an `sadd_sat.i8` of `0x70` and `0x70` is greater than `0x7F`, the result will be
clamped to `0x7F`. clamped to `0x7F`.
"#, "#,
&formats.binary, &formats.binary,