core_arch: powerpc: Fix documentation for vec_ctu

Like the name suggests, this converts to unsigned integers rather than
signed. I assume this was copy pasted from vec_cts.

Signed-off-by: Jens Reidel <adrian@travitia.xyz>
This commit is contained in:
Jens Reidel 2024-10-31 18:22:43 +01:00 committed by Amanieu d'Antras
parent 73c15a0c93
commit 89caa7798f

View file

@ -4117,7 +4117,7 @@ pub unsafe fn vec_cts<const IMM5: i32>(a: vector_float) -> vector_signed_int {
vctsxs(a, IMM5)
}
/// Vector Convert to Signed Integer
/// Vector Convert to Unsigned Integer
#[inline]
#[target_feature(enable = "altivec")]
#[cfg_attr(test, assert_instr(vctuxs, IMM5 = 1))]