Searched refs:FallthroughBB (Results 1 – 1 of 1) sorted by relevance
/external/llvm/lib/CodeGen/ |
D | MachineBasicBlock.cpp | 442 MachineBasicBlock *FallthroughBB = 0; in updateTerminator() local 446 assert(!FallthroughBB && "Found more than one fallthrough successor."); in updateTerminator() 447 FallthroughBB = *SI; in updateTerminator() 449 if (!FallthroughBB && canFallThrough()) { in updateTerminator() 469 TII->InsertBranch(*this, FallthroughBB, 0, Cond, dl); in updateTerminator() 473 TII->InsertBranch(*this, FallthroughBB, 0, Cond, dl); in updateTerminator() 474 } else if (!isLayoutSuccessor(FallthroughBB)) { in updateTerminator() 476 TII->InsertBranch(*this, TBB, FallthroughBB, Cond, dl); in updateTerminator()
|