@@ -133,7 +133,7 @@ impl<'tcx> FulfillmentContext<'tcx> {
133
133
cause : ObligationCause < ' tcx > )
134
134
-> Ty < ' tcx >
135
135
{
136
- debug ! ( "normalize_associated_type (projection_ty={:?})" ,
136
+ debug ! ( "normalize_projection_type (projection_ty={:?})" ,
137
137
projection_ty) ;
138
138
139
139
assert ! ( !projection_ty. has_escaping_regions( ) ) ;
@@ -147,7 +147,7 @@ impl<'tcx> FulfillmentContext<'tcx> {
147
147
self . register_predicate_obligation ( infcx, obligation) ;
148
148
}
149
149
150
- debug ! ( "normalize_associated_type : result={:?}" , normalized. value) ;
150
+ debug ! ( "normalize_projection_type : result={:?}" , normalized. value) ;
151
151
152
152
normalized. value
153
153
}
@@ -185,11 +185,11 @@ impl<'tcx> FulfillmentContext<'tcx> {
185
185
assert ! ( !obligation. has_escaping_regions( ) ) ;
186
186
187
187
if self . is_duplicate_or_add ( infcx. tcx , & obligation. predicate ) {
188
- debug ! ( "register_predicate ({:?}) -- already seen, skip" , obligation) ;
188
+ debug ! ( "register_predicate_obligation ({:?}) -- already seen, skip" , obligation) ;
189
189
return ;
190
190
}
191
191
192
- debug ! ( "register_predicate ({:?})" , obligation) ;
192
+ debug ! ( "register_predicate_obligation ({:?})" , obligation) ;
193
193
let obligation = PendingPredicateObligation {
194
194
obligation : obligation,
195
195
stalled_on : vec ! [ ]
@@ -274,7 +274,7 @@ impl<'tcx> FulfillmentContext<'tcx> {
274
274
let mut errors = Vec :: new ( ) ;
275
275
276
276
loop {
277
- debug ! ( "select_where_possible : starting another iteration" ) ;
277
+ debug ! ( "select : starting another iteration" ) ;
278
278
279
279
// Process pending obligations.
280
280
let outcome = {
@@ -287,7 +287,7 @@ impl<'tcx> FulfillmentContext<'tcx> {
287
287
region_obligations) )
288
288
} ;
289
289
290
- debug ! ( "select_where_possible : outcome={:?}" , outcome) ;
290
+ debug ! ( "select : outcome={:?}" , outcome) ;
291
291
292
292
// these are obligations that were proven to be true.
293
293
for pending_obligation in outcome. completed {
0 commit comments