File tree Expand file tree Collapse file tree
src/tools/miri/src/shims/x86 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -188,12 +188,12 @@ fn vpdpbusd<'tcx>(
188188 let ( b, b_len) = ecx. project_to_simd ( b) ?;
189189 let ( dest, dest_len) = ecx. project_to_simd ( dest) ?;
190190
191- // fn vpdpbusd(src: i32x16, a: i32x16 , b: i32x16 ) -> i32x16;
192- // fn vpdpbusd256(src: i32x8, a: i32x8 , b: i32x8 ) -> i32x8;
193- // fn vpdpbusd128(src: i32x4, a: i32x4 , b: i32x4 ) -> i32x4;
191+ // fn vpdpbusd(src: i32x16, a: u8x64 , b: i8x64 ) -> i32x16;
192+ // fn vpdpbusd256(src: i32x8, a: u8x32 , b: i8x32 ) -> i32x8;
193+ // fn vpdpbusd128(src: i32x4, a: u8x16 , b: i8x16 ) -> i32x4;
194194 assert_eq ! ( dest_len, src_len) ;
195- assert_eq ! ( dest_len , a_len ) ;
196- assert_eq ! ( dest_len , b_len) ;
195+ assert_eq ! ( a_len , dest_len / 4 ) ;
196+ assert_eq ! ( a_len , b_len) ;
197197
198198 for i in 0 ..dest_len {
199199 let src = ecx. read_scalar ( & ecx. project_index ( & src, i) ?) ?. to_i32 ( ) ?;
You can’t perform that action at this time.
0 commit comments