Convert __mmask16 to use an unsigned type

This commit is contained in:
Daniel Smith
2020-05-28 21:00:13 +00:00
committed by Amanieu d'Antras
parent 079ce26eb7
commit 7a29fcc1c8

View File

@@ -344,7 +344,7 @@ types! {
/// The `__mmask16` type used in AVX-512 intrinsics, a 16-bit integer
#[allow(non_camel_case_types)]
pub type __mmask16 = i16;
pub type __mmask16 = u16;
#[cfg(test)]
mod test;