1
Fork 0

Rollup merge of #137556 - RalfJung:simd_shuffle_const_generic, r=oli-obk

rename simd_shuffle_generic → simd_shuffle_const_generic

I've been confused by this name one time too often. ;)

r? `@oli-obk`
This commit is contained in:
Michael Goulet 2025-02-24 19:21:51 -05:00 committed by GitHub
commit 6c1f959288
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 55 additions and 55 deletions

View file

@ -1329,7 +1329,7 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
));
}
if name == sym::simd_shuffle_generic {
if name == sym::simd_shuffle_const_generic {
let idx = fn_args[2].expect_const().to_value().valtree.unwrap_branch();
let n = idx.len() as u64;