Searched refs:FallthroughBB (Results 1 – 1 of 1) sorted by relevance
/external/llvm/lib/CodeGen/ |
D | MachineBasicBlock.cpp | 448 MachineBasicBlock *FallthroughBB = nullptr; in updateTerminator() local 452 assert(!FallthroughBB && "Found more than one fallthrough successor."); in updateTerminator() 453 FallthroughBB = *SI; in updateTerminator() 455 if (!FallthroughBB && canFallThrough()) { in updateTerminator() 475 TII->InsertBranch(*this, FallthroughBB, nullptr, Cond, dl); in updateTerminator() 479 TII->InsertBranch(*this, FallthroughBB, nullptr, Cond, dl); in updateTerminator() 480 } else if (!isLayoutSuccessor(FallthroughBB)) { in updateTerminator() 482 TII->InsertBranch(*this, TBB, FallthroughBB, Cond, dl); in updateTerminator()
|