Skip to content

Commit

Permalink
simd_shuffle intrinsic: allow argument to be passed as vector (not ju…
Browse files Browse the repository at this point in the history
…st as array)
  • Loading branch information
RalfJung committed Aug 13, 2024
1 parent e3da824 commit 6ad03a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/intrinsics/simd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ extern "rust-intrinsic" {
///
/// `T` must be a vector.
///
/// `U` must be a **const** array of `i32`s. This means it must either refer to a named
/// `U` must be a **const** array or vector of `u32`s. This means it must either refer to a named
/// const or be given as an inline const expression (`const { ... }`).
///
/// `V` must be a vector with the same element type as `T` and the same length as `U`.
Expand Down

0 comments on commit 6ad03a7

Please sign in to comment.