use crate::intrin::saturating_sub::*;
use crate::arch::current::vecs::*;
use crate::vecs::*;
rust_fallback_impl_binary! {
impl SaturatingSub for u8x16 where "__undefined" {
saturating_sub => __undefined(), [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15];
}
}
rust_fallback_impl_binary! {
impl SaturatingSub for i8x16 where "__undefined" {
saturating_sub => __undefined(), [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15];
}
}
rust_fallback_impl_binary! {
impl SaturatingSub for u16x8 where "__undefined" {
saturating_sub => __undefined(), [0, 1, 2, 3, 4, 5, 6, 7];
}
}
rust_fallback_impl_binary! {
impl SaturatingSub for i16x8 where "__undefined" {
saturating_sub => __undefined(), [0, 1, 2, 3, 4, 5, 6, 7];
}
}