File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ impl<'tcx> Body<'tcx> {
203
203
204
204
#[ inline]
205
205
pub fn basic_blocks_mut ( & mut self ) -> & mut IndexVec < BasicBlock , BasicBlockData < ' tcx > > {
206
- debug ! ( "Clearing predecessors cache at: {:?}" , self . span. data( ) ) ;
206
+ debug ! ( "bbm: Clearing predecessors cache for body at: {:?}" , self . span. data( ) ) ;
207
207
self . predecessors_cache = None ;
208
208
& mut self . basic_blocks
209
209
}
@@ -212,6 +212,8 @@ impl<'tcx> Body<'tcx> {
212
212
pub fn basic_blocks_and_local_decls_mut (
213
213
& mut self ,
214
214
) -> ( & mut IndexVec < BasicBlock , BasicBlockData < ' tcx > > , & mut LocalDecls < ' tcx > ) {
215
+ debug ! ( "bbaldm: Clearing predecessors cache for body at: {:?}" , self . span. data( ) ) ;
216
+ self . predecessors_cache = None ;
215
217
( & mut self . basic_blocks , & mut self . local_decls )
216
218
}
217
219
You can’t perform that action at this time.
0 commit comments