Function pulley_interpreter::encode::xadd32
source ยท pub fn xadd32<E>(
into: &mut E,
dst: impl Into<XReg>,
src1: impl Into<XReg>,
src2: impl Into<XReg>,
)
Available on crate feature
encode
only.Expand description
32-bit wrapping addition: low32(dst) = low32(src1) + low32(src2)
.
The upper 32-bits of dst
are unmodified.