diff options
| author | Michael Goulet <michael@errs.io> | 2025-02-24 19:21:51 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-24 19:21:51 -0500 |
| commit | 6c1f9592881b3e15bbd1157b45440e2bac289ed5 (patch) | |
| tree | e52a1eb06b00e1f4146e219b911c79e1a455bed4 /compiler/rustc_codegen_llvm/src | |
| parent | c11a523f7455e96a3c8776abebc3fb73d26cd30d (diff) | |
| parent | 0362775fb5badb68fcc2a9a46a16f0154054f3c4 (diff) | |
| download | rust-6c1f9592881b3e15bbd1157b45440e2bac289ed5.tar.gz rust-6c1f9592881b3e15bbd1157b45440e2bac289ed5.zip | |
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`
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/intrinsic.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/intrinsic.rs b/compiler/rustc_codegen_llvm/src/intrinsic.rs index dfbb5bc1731..56fae135e55 100644 --- a/compiler/rustc_codegen_llvm/src/intrinsic.rs +++ b/compiler/rustc_codegen_llvm/src/intrinsic.rs @@ -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; |
