Skip to content

Commit 58c8f32

Browse files
committed
Fix lines too long
1 parent 9fe9347 commit 58c8f32

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

src/librustc_codegen_llvm/consts.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
use libc::c_uint;
1212
use llvm::{self, SetUnnamedAddr, True};
1313
use rustc::hir::def_id::DefId;
14-
use rustc::mir::interpret::{ConstValue, Allocation, read_target_uint, Pointer, ConstEvalErr, GlobalId};
14+
use rustc::mir::interpret::{ConstValue, Allocation, read_target_uint,
15+
Pointer, ConstEvalErr, GlobalId};
1516
use rustc::hir::Node;
1617
use debuginfo;
1718
use monomorphize::MonoItem;

src/librustc_codegen_ssa/base.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ use meth;
4848
use mir;
4949
use rustc::util::time_graph;
5050
use rustc_mir::monomorphize::Instance;
51-
use rustc_mir::monomorphize::partitioning::{self, PartitioningStrategy, CodegenUnit, CodegenUnitExt};
51+
use rustc_mir::monomorphize::partitioning::{self, PartitioningStrategy,
52+
CodegenUnit, CodegenUnitExt};
5253
use mono_item::{MonoItem, BaseMonoItemExt};
5354
use rustc::util::nodemap::{FxHashMap, FxHashSet, DefIdSet};
5455
use rustc_data_structures::sync::Lrc;

src/librustc_codegen_ssa/interfaces/debuginfo.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ pub trait DebugInfoMethods<'ll, 'tcx: 'll> : Backend<'ll> {
6060
pub trait DebugInfoBuilderMethods<'a, 'll: 'a, 'tcx: 'll> : HasCodegen<'a, 'll, 'tcx> {
6161
fn declare_local(
6262
&self,
63-
dbg_context: &FunctionDebugContext<<Self::CodegenCx as DebugInfoMethods<'ll, 'tcx>>::DIScope>,
63+
dbg_context: &FunctionDebugContext<
64+
<Self::CodegenCx as DebugInfoMethods<'ll, 'tcx>>::DIScope
65+
>,
6466
variable_name: Name,
6567
variable_type: Ty<'tcx>,
6668
scope_metadata: <Self::CodegenCx as DebugInfoMethods<'ll, 'tcx>>::DIScope,
@@ -70,7 +72,9 @@ pub trait DebugInfoBuilderMethods<'a, 'll: 'a, 'tcx: 'll> : HasCodegen<'a, 'll,
7072
);
7173
fn set_source_location(
7274
&self,
73-
debug_context: &FunctionDebugContext<<Self::CodegenCx as DebugInfoMethods<'ll, 'tcx>>::DIScope>,
75+
debug_context: &FunctionDebugContext<
76+
<Self::CodegenCx as DebugInfoMethods<'ll, 'tcx>>::DIScope
77+
>,
7478
scope: Option<<Self::CodegenCx as DebugInfoMethods<'ll, 'tcx>>::DIScope>,
7579
span: syntax_pos::Span,
7680
);

src/librustc_codegen_ssa/type_of.rs

Whitespace-only changes.

0 commit comments

Comments
 (0)