diff options
| -rw-r--r-- | src/librustc_mir/interpret/operand.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/librustc_mir/interpret/operand.rs b/src/librustc_mir/interpret/operand.rs index c5771e4f343..afaf9d7ed9d 100644 --- a/src/librustc_mir/interpret/operand.rs +++ b/src/librustc_mir/interpret/operand.rs @@ -338,8 +338,7 @@ impl<'mir, 'tcx, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> { /// Read vector length and element type pub fn read_vector_ty( &self, op: OpTy<'tcx, M::PointerTag> - ) - -> (u64, &rustc::ty::TyS<'tcx>) { + ) -> (u64, &rustc::ty::TyS<'tcx>) { if let layout::Abi::Vector { .. } = op.layout.abi { (op.layout.ty.simd_size(*self.tcx) as _, op.layout.ty.simd_type(*self.tcx)) } else { |
