提交 652b3b71 编写于 作者: N Niko Matsakis

random reformatting

上级 0037cca2
......@@ -105,8 +105,7 @@ fn add_liveness_constraints(&mut self, bb: BasicBlock) {
for live_local in live_locals {
debug!(
"add_liveness_constraints: location={:?} live_local={:?}",
location,
live_local
location, live_local
);
self.flow_inits.each_state_bit(|mpi_init| {
......@@ -157,8 +156,7 @@ fn push_type_live_constraint<T>(&mut self, value: T, location: Location, cause:
{
debug!(
"push_type_live_constraint(live_ty={:?}, location={:?})",
value,
location
value, location
);
self.tcx.for_each_free_region(&value, |live_region| {
......@@ -182,9 +180,7 @@ fn add_drop_live_constraint(
) {
debug!(
"add_drop_live_constraint(dropped_local={:?}, dropped_ty={:?}, location={:?})",
dropped_local,
dropped_ty,
location
dropped_local, dropped_ty, location
);
// If we end visiting the same type twice (usually due to a cycle involving
......
......@@ -243,8 +243,7 @@ fn sanitize_type(&mut self, parent: &dyn fmt::Debug, ty: Ty<'tcx>) -> Ty<'tcx> {
fn sanitize_constant(&mut self, constant: &Constant<'tcx>, location: Location) {
debug!(
"sanitize_constant(constant={:?}, location={:?})",
constant,
location
constant, location
);
let expected_ty = match constant.literal {
......@@ -678,8 +677,10 @@ fn fully_perform_op<OP, R>(
let data = self.infcx.take_and_reset_region_constraints();
if !data.is_empty() {
debug!("fully_perform_op: constraints generated at {:?} are {:#?}",
locations, data);
debug!(
"fully_perform_op: constraints generated at {:?} are {:#?}",
locations, data
);
self.constraints
.outlives_sets
.push(OutlivesSet { locations, data });
......@@ -1137,12 +1138,16 @@ fn check_iscleanup(&mut self, mir: &Mir<'tcx>, block_data: &BasicBlockData<'tcx>
}
TerminatorKind::FalseUnwind {
real_target,
unwind
unwind,
} => {
self.assert_iscleanup(mir, block_data, real_target, is_cleanup);
if let Some(unwind) = unwind {
if is_cleanup {
span_mirbug!(self, block_data, "cleanup in cleanup block via false unwind");
span_mirbug!(
self,
block_data,
"cleanup in cleanup block via false unwind"
);
}
self.assert_iscleanup(mir, block_data, unwind, true);
}
......@@ -1435,8 +1440,7 @@ fn prove_aggregate_predicates(
debug!(
"prove_aggregate_predicates(aggregate_kind={:?}, location={:?})",
aggregate_kind,
location
aggregate_kind, location
);
let instantiated_predicates = match aggregate_kind {
......@@ -1502,8 +1506,7 @@ fn prove_trait_ref(&mut self, trait_ref: ty::TraitRef<'tcx>, location: Location)
fn prove_predicates(&mut self, predicates: &[ty::Predicate<'tcx>], location: Location) {
debug!(
"prove_predicates(predicates={:?}, location={:?})",
predicates,
location
predicates, location
);
self.fully_perform_op(location.at_self(), |this| {
let cause = this.misc(this.last_span);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册