From e7f8d4fbedee84b0d4c330caaced899d88d3299c Mon Sep 17 00:00:00 2001 From: gnzlbg Date: Sat, 28 Apr 2018 13:09:27 +0200 Subject: [PATCH] Add missing From impls to {i,u}8x16. Closes #434 --- coresimd/ppsv/v128.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coresimd/ppsv/v128.rs b/coresimd/ppsv/v128.rs index fa678114c6..85a18f7863 100644 --- a/coresimd/ppsv/v128.rs +++ b/coresimd/ppsv/v128.rs @@ -552,8 +552,8 @@ impl_from!( m8x8 ); -impl_from!(u8x16: u8, u8x16_from, test_v128 | i32x16, u32x16, f32x16, m1x16, i16x16, m16x16, i8x16, m8x16); -impl_from!(i8x16: i8, i8x16_from, test_v128 | i32x16, u32x16, f32x16, m1x16, u16x16, m16x16, u8x16, m8x16); +impl_from!(u8x16: u8, u8x16_from, test_v128 | i32x16, u32x16, f32x16, m1x16, i16x16, u16x16, m16x16, i8x16, m8x16); +impl_from!(i8x16: i8, i8x16_from, test_v128 | i32x16, u32x16, f32x16, m1x16, i16x16, u16x16, m16x16, u8x16, m8x16); impl_from!(m8x16: i8, m8x16_from, test_v128 | m1x16, m16x16);