about summary refs log tree commit diff
path: root/src/tools/rust-analyzer
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 /src/tools/rust-analyzer
parent2f581937e1c06adb4607df1b571c0bef6d98e6ec (diff)
downloadrust-aac65f562b3e9351d4a4336c270ce13c130de467.tar.gz
rust-aac65f562b3e9351d4a4336c270ce13c130de467.zip
rename BackendRepr::Vector → SimdVector
Diffstat (limited to 'src/tools/rust-analyzer')
-rw-r--r--src/tools/rust-analyzer/crates/hir-ty/src/layout.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/crates/hir-ty/src/layout.rs b/src/tools/rust-analyzer/crates/hir-ty/src/layout.rs
index e2ab336d2e4..a4e49e0aa10 100644
--- a/src/tools/rust-analyzer/crates/hir-ty/src/layout.rs
+++ b/src/tools/rust-analyzer/crates/hir-ty/src/layout.rs
@@ -192,7 +192,7 @@ fn layout_of_simd_ty(
     Ok(Arc::new(Layout {
         variants: Variants::Single { index: struct_variant_idx() },
         fields,
-        backend_repr: BackendRepr::Vector { element: e_abi, count: e_len },
+        backend_repr: BackendRepr::SimdVector { element: e_abi, count: e_len },
         largest_niche: e_ly.largest_niche,
         uninhabited: false,
         size,