File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ bool PPCBranchCoalescing::canCoalesceBranch(CoalescingCandidateInfo &Cand) {
291
291
return false ;
292
292
}
293
293
294
- // Sanity check - the block must be able to fall through
294
+ // The block must be able to fall through.
295
295
assert (Cand.BranchBlock ->canFallThrough () &&
296
296
" Expecting the block to fall through!" );
297
297
@@ -751,9 +751,8 @@ bool PPCBranchCoalescing::runOnMachineFunction(MachineFunction &MF) {
751
751
if (!canCoalesceBranch (Cand2))
752
752
break ;
753
753
754
- // Sanity check
755
754
// The branch-taken block of the second candidate should post-dominate the
756
- // first candidate
755
+ // first candidate.
757
756
assert (MPDT->dominates (Cand2.BranchTargetBlock , Cand1.BranchBlock ) &&
758
757
" Branch-taken block should post-dominate first candidate" );
759
758
You can’t perform that action at this time.
0 commit comments