about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/intrinsic.rs
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2025-02-24 19:10:55 +0100
committerRalf Jung <post@ralfj.de>2025-02-24 19:13:23 +0100
commit0362775fb5badb68fcc2a9a46a16f0154054f3c4 (patch)
tree0e2290db72734c2ef039e9b08f6132ec8a1c5dd2 /compiler/rustc_codegen_llvm/src/intrinsic.rs
parent617aad8c2e8783f6df8e5d1f8bb1e4bcdc70aa7b (diff)
downloadrust-0362775fb5badb68fcc2a9a46a16f0154054f3c4.tar.gz
rust-0362775fb5badb68fcc2a9a46a16f0154054f3c4.zip
rename simd_shuffle_generic → simd_shuffle_const_generic
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/intrinsic.rs')
-rw-r--r--compiler/rustc_codegen_llvm/src/intrinsic.rs2
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;