mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-07 01:05:39 +03:00
Auto merge of #3660 - RalfJung:wrong-error, r=RalfJung
simd_select_bitmask: fix intrinsic name in error *oops*
This commit is contained in:
@@ -454,7 +454,7 @@ enum Op {
|
||||
let bitmask_len = dest_len.next_multiple_of(8);
|
||||
if bitmask_len > 64 {
|
||||
throw_unsup_format!(
|
||||
"simd_bitmask: masks larger than 64 elements are currently not supported"
|
||||
"simd_select_bitmask: vectors larger than 64 elements are currently not supported"
|
||||
);
|
||||
}
|
||||
|
||||
@@ -504,7 +504,7 @@ enum Op {
|
||||
let bitmask_len = op_len.next_multiple_of(8);
|
||||
if bitmask_len > 64 {
|
||||
throw_unsup_format!(
|
||||
"simd_bitmask: masks larger than 64 elements are currently not supported"
|
||||
"simd_bitmask: vectors larger than 64 elements are currently not supported"
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user