]> git.lizzy.rs Git - rust.git/commitdiff
Format
authorgnzlbg <gonzalobg88@gmail.com>
Wed, 25 Sep 2019 11:39:28 +0000 (13:39 +0200)
committergnzlbg <gonzalobg88@gmail.com>
Wed, 25 Sep 2019 11:39:28 +0000 (13:39 +0200)
src/librustc_mir/interpret/operand.rs

index c5771e4f34378125768fa932525f704ceb8336c3..afaf9d7ed9d67072c1ebf7902e8e2ac263b58f70 100644 (file)
@@ -338,8 +338,7 @@ pub fn read_immediate(
     /// 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 {