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-28 16:29:07 +0100
committerRalf Jung <post@ralfj.de>2025-02-28 17:17:45 +0100
commitaac65f562b3e9351d4a4336c270ce13c130de467 (patch)
tree3df0fe93b4a6a5dae00c2721e8239958ff79ba40 /compiler/rustc_codegen_llvm/src/intrinsic.rs
parent2f581937e1c06adb4607df1b571c0bef6d98e6ec (diff)
downloadrust-aac65f562b3e9351d4a4336c270ce13c130de467.tar.gz
rust-aac65f562b3e9351d4a4336c270ce13c130de467.zip
rename BackendRepr::Vector → SimdVector
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 1169b9c067d..0272667e223 100644
--- a/compiler/rustc_codegen_llvm/src/intrinsic.rs
+++ b/compiler/rustc_codegen_llvm/src/intrinsic.rs
@@ -470,7 +470,7 @@ impl<'ll, 'tcx> IntrinsicCallBuilderMethods<'tcx> for Builder<'_, 'll, 'tcx> {
                 let layout = self.layout_of(tp_ty).layout;
                 let use_integer_compare = match layout.backend_repr() {
                     Scalar(_) | ScalarPair(_, _) => true,
-                    Vector { .. } => false,
+                    SimdVector { .. } => false,
                     Memory { .. } => {
                         // For rusty ABIs, small aggregates are actually passed
                         // as `RegKind::Integer` (see `FnAbi::adjust_for_abi`),