File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1955,8 +1955,7 @@ bool Compiler::optTryInvertWhileLoop(FlowGraphNaturalLoop* loop)
19551955
19561956 if (isExitingCondLatch (latch) && isIvTest (latch))
19571957 {
1958- JITDUMP (" No loop-inversion for " FMT_LP " ; IV-test latch " FMT_BB
1959- " already makes it bottom-tested\n " ,
1958+ JITDUMP (" No loop-inversion for " FMT_LP " ; IV-test latch " FMT_BB " already makes it bottom-tested\n " ,
19601959 loop->GetIndex (), latch->bbNum );
19611960 return false ;
19621961 }
@@ -1968,8 +1967,8 @@ bool Compiler::optTryInvertWhileLoop(FlowGraphNaturalLoop* loop)
19681967 BasicBlock* const pred = predEdge->getSourceBlock ();
19691968 if (loop->ContainsBlock (pred) && isExitingCondLatch (pred) && isIvTest (pred))
19701969 {
1971- JITDUMP (" No loop-inversion for " FMT_LP " ; IV-test predecessor " FMT_BB " of canonical latch "
1972- FMT_BB " already makes it bottom-tested\n " ,
1970+ JITDUMP (" No loop-inversion for " FMT_LP " ; IV-test predecessor " FMT_BB
1971+ " of canonical latch " FMT_BB " already makes it bottom-tested\n " ,
19731972 loop->GetIndex (), pred->bbNum , latch->bbNum );
19741973 return false ;
19751974 }
You can’t perform that action at this time.
0 commit comments