File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/tools/miri/src/intrinsics Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -454,7 +454,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
454454 let bitmask_len = dest_len. next_multiple_of ( 8 ) ;
455455 if bitmask_len > 64 {
456456 throw_unsup_format ! (
457- "simd_bitmask: masks larger than 64 elements are currently not supported"
457+ "simd_select_bitmask: vectors larger than 64 elements are currently not supported"
458458 ) ;
459459 }
460460
@@ -504,7 +504,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
504504 let bitmask_len = op_len. next_multiple_of ( 8 ) ;
505505 if bitmask_len > 64 {
506506 throw_unsup_format ! (
507- "simd_bitmask: masks larger than 64 elements are currently not supported"
507+ "simd_bitmask: vectors larger than 64 elements are currently not supported"
508508 ) ;
509509 }
510510
You can’t perform that action at this time.
0 commit comments