Skip to content

Commit e1cf0a1

Browse files
committed
Format
1 parent e74a268 commit e1cf0a1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/librustc_mir/interpret/operand.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -338,8 +338,7 @@ impl<'mir, 'tcx, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
338338
/// Read vector length and element type
339339
pub fn read_vector_ty(
340340
&self, op: OpTy<'tcx, M::PointerTag>
341-
)
342-
-> (u64, &rustc::ty::TyS<'tcx>) {
341+
) -> (u64, &rustc::ty::TyS<'tcx>) {
343342
if let layout::Abi::Vector { .. } = op.layout.abi {
344343
(op.layout.ty.simd_size(*self.tcx) as _, op.layout.ty.simd_type(*self.tcx))
345344
} else {

0 commit comments

Comments
 (0)