@@ -159,7 +159,7 @@ impl Inliner<'tcx> {
159159
160160 // Simplify if we inlined anything.
161161 if changed {
162- debug ! ( "Running simplify cfg on {:?}" , self . source) ;
162+ debug ! ( "running simplify cfg on {:?}" , self . source) ;
163163 CfgSimplifier :: new ( caller_body) . simplify ( ) ;
164164 remove_dead_blocks ( caller_body) ;
165165 }
@@ -247,7 +247,7 @@ impl Inliner<'tcx> {
247247 // need to check for first.
248248 attr:: InlineAttr :: Always => true ,
249249 attr:: InlineAttr :: Never => {
250- debug ! ( "#[inline(never)] present - not inlining" ) ;
250+ debug ! ( "` #[inline(never)]` present - not inlining" ) ;
251251 return false
252252 }
253253 attr:: InlineAttr :: Hint => true ,
@@ -397,7 +397,7 @@ impl Inliner<'tcx> {
397397 match terminator. kind {
398398 // FIXME: Handle inlining of diverging calls
399399 TerminatorKind :: Call { args, destination : Some ( destination) , cleanup, .. } => {
400- debug ! ( "Inlined {:?} into {:?}" , callsite. callee, self . source) ;
400+ debug ! ( "inlined {:?} into {:?}" , callsite. callee, self . source) ;
401401
402402 let mut local_map = IndexVec :: with_capacity ( callee_body. local_decls . len ( ) ) ;
403403 let mut scope_map = IndexVec :: with_capacity ( callee_body. source_scopes . len ( ) ) ;
@@ -456,7 +456,7 @@ impl Inliner<'tcx> {
456456 }
457457
458458 let dest = if dest_needs_borrow ( & destination. 0 ) {
459- debug ! ( "Creating temp for return destination" ) ;
459+ debug ! ( "creating temp for return destination" ) ;
460460 let dest = Rvalue :: Ref (
461461 self . tcx . lifetimes . re_erased ,
462462 BorrowKind :: Mut { allow_two_phase_borrow : false } ,
@@ -610,7 +610,7 @@ impl Inliner<'tcx> {
610610 }
611611 }
612612
613- debug ! ( "Creating temp for argument {:?}" , arg) ;
613+ debug ! ( "creating temp for argument {:?}" , arg) ;
614614 // Otherwise, create a temporary for the arg
615615 let arg = Rvalue :: Use ( arg) ;
616616
@@ -659,7 +659,7 @@ struct Integrator<'a, 'tcx> {
659659impl < ' a , ' tcx > Integrator < ' a , ' tcx > {
660660 fn update_target ( & self , tgt : BasicBlock ) -> BasicBlock {
661661 let new = BasicBlock :: new ( tgt. index ( ) + self . block_idx ) ;
662- debug ! ( "Updating target `{:?}`, new: `{:?}`" , tgt, new) ;
662+ debug ! ( "updating target `{:?}`, new: `{:?}`" , tgt, new) ;
663663 new
664664 }
665665}
0 commit comments