@@ -159,7 +159,7 @@ impl Inliner<'tcx> {
159
159
160
160
// Simplify if we inlined anything.
161
161
if changed {
162
- debug ! ( "Running simplify cfg on {:?}" , self . source) ;
162
+ debug ! ( "running simplify cfg on {:?}" , self . source) ;
163
163
CfgSimplifier :: new ( caller_body) . simplify ( ) ;
164
164
remove_dead_blocks ( caller_body) ;
165
165
}
@@ -247,7 +247,7 @@ impl Inliner<'tcx> {
247
247
// need to check for first.
248
248
attr:: InlineAttr :: Always => true ,
249
249
attr:: InlineAttr :: Never => {
250
- debug ! ( "#[inline(never)] present - not inlining" ) ;
250
+ debug ! ( "` #[inline(never)]` present - not inlining" ) ;
251
251
return false
252
252
}
253
253
attr:: InlineAttr :: Hint => true ,
@@ -397,7 +397,7 @@ impl Inliner<'tcx> {
397
397
match terminator. kind {
398
398
// FIXME: Handle inlining of diverging calls
399
399
TerminatorKind :: Call { args, destination : Some ( destination) , cleanup, .. } => {
400
- debug ! ( "Inlined {:?} into {:?}" , callsite. callee, self . source) ;
400
+ debug ! ( "inlined {:?} into {:?}" , callsite. callee, self . source) ;
401
401
402
402
let mut local_map = IndexVec :: with_capacity ( callee_body. local_decls . len ( ) ) ;
403
403
let mut scope_map = IndexVec :: with_capacity ( callee_body. source_scopes . len ( ) ) ;
@@ -456,7 +456,7 @@ impl Inliner<'tcx> {
456
456
}
457
457
458
458
let dest = if dest_needs_borrow ( & destination. 0 ) {
459
- debug ! ( "Creating temp for return destination" ) ;
459
+ debug ! ( "creating temp for return destination" ) ;
460
460
let dest = Rvalue :: Ref (
461
461
self . tcx . lifetimes . re_erased ,
462
462
BorrowKind :: Mut { allow_two_phase_borrow : false } ,
@@ -610,7 +610,7 @@ impl Inliner<'tcx> {
610
610
}
611
611
}
612
612
613
- debug ! ( "Creating temp for argument {:?}" , arg) ;
613
+ debug ! ( "creating temp for argument {:?}" , arg) ;
614
614
// Otherwise, create a temporary for the arg
615
615
let arg = Rvalue :: Use ( arg) ;
616
616
@@ -659,7 +659,7 @@ struct Integrator<'a, 'tcx> {
659
659
impl < ' a , ' tcx > Integrator < ' a , ' tcx > {
660
660
fn update_target ( & self , tgt : BasicBlock ) -> BasicBlock {
661
661
let new = BasicBlock :: new ( tgt. index ( ) + self . block_idx ) ;
662
- debug ! ( "Updating target `{:?}`, new: `{:?}`" , tgt, new) ;
662
+ debug ! ( "updating target `{:?}`, new: `{:?}`" , tgt, new) ;
663
663
new
664
664
}
665
665
}
0 commit comments