diff options
| author | gnzlbg <gonzalobg88@gmail.com> | 2019-09-25 13:39:28 +0200 |
|---|---|---|
| committer | gnzlbg <gonzalobg88@gmail.com> | 2019-09-25 13:39:28 +0200 |
| commit | e1cf0a1d677a6f583baf96b14dccf61ec5e4cfeb (patch) | |
| tree | 90aaf037e6bcfd917fd42163f126242b611f2a4c /src | |
| parent | e74a268db511d4f124425c981300ebfaea0d64ee (diff) | |
| download | rust-e1cf0a1d677a6f583baf96b14dccf61ec5e4cfeb.tar.gz rust-e1cf0a1d677a6f583baf96b14dccf61ec5e4cfeb.zip | |
Format
Diffstat (limited to 'src')
| -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 { |
