File tree 1 file changed +2
-2
lines changed
src/tools/miri/src/intrinsics
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> {
454
454
let bitmask_len = dest_len. next_multiple_of ( 8 ) ;
455
455
if bitmask_len > 64 {
456
456
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"
458
458
) ;
459
459
}
460
460
@@ -504,7 +504,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
504
504
let bitmask_len = op_len. next_multiple_of ( 8 ) ;
505
505
if bitmask_len > 64 {
506
506
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"
508
508
) ;
509
509
}
510
510
You can’t perform that action at this time.
0 commit comments