Home | History | Annotate | Download | only in CodeGen

Lines Matching full:fallthrough

947   //   fallthrough to QBB
1007 if (IBB != PredNextBB) // fallthrough
1151 // into a fallthrough to the return.
1193 MachineFunction::iterator FallThrough = MBB;
1194 ++FallThrough;
1204 if (FallThrough == MF.end()) {
1207 // Rewrite all predecessors of the old block to go to the fallthrough
1211 Pred->ReplaceUsesOfBlockWith(MBB, FallThrough);
1214 // fallthrough instead.
1216 MJTI->ReplaceMBBInJumpTables(MBB, FallThrough);
1329 MachineFunction::iterator(PriorTBB) == FallThrough &&
1338 if (FallThrough == --MF.end() &&
1347 << "To make fallthrough to: " << *PriorTBB << "\n");
1546 // fallthrough to happen.
1561 if (FallThrough != MF.end() &&
1563 PrevBB.isSuccessor(FallThrough)) {
1590 /// findFalseBlock - BB has a fallthrough. Find its 'false' successor given