We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5c6d05 commit f964368Copy full SHA for f964368
src/tools/rust-analyzer/crates/hir-ty/src/layout.rs
@@ -179,7 +179,7 @@ fn layout_of_simd_ty(
179
.size
180
.checked_mul(e_len, dl)
181
.ok_or(LayoutError::BadCalc(LayoutCalculatorError::SizeOverflow))?;
182
- let align = dl.vector_align(size);
+ let align = dl.llvmlike_vector_align(size);
183
let size = size.align_to(align.abi);
184
185
// Compute the placement of the vector fields:
0 commit comments