Skip to content

Commit d5dc024

Browse files
committed
Even more tracing
1 parent 7081997 commit d5dc024

File tree

1 file changed

+3
-0
lines changed
  • compiler/rustc_borrowck/src/region_infer

1 file changed

+3
-0
lines changed

compiler/rustc_borrowck/src/region_infer/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -755,10 +755,13 @@ impl<'tcx> RegionInferenceContext<'tcx> {
755755
#[instrument(skip(self), level = "debug")]
756756
fn compute_value_for_scc(&mut self, scc_a: ConstraintSccIndex) {
757757
let constraint_sccs = self.constraint_sccs.clone();
758+
debug!("scc_a is: {:?}", self.scc_representatives[scc_a]);
758759

759760
// Walk each SCC `B` such that `A: B`...
760761
for &scc_b in constraint_sccs.successors(scc_a) {
761762
debug!(?scc_b);
763+
debug!("scc_b is: {:?}", self.scc_representatives[scc_b]);
764+
762765

763766
// ...and add elements from `B` into `A`. One complication
764767
// arises because of universes: If `B` contains something

0 commit comments

Comments
 (0)