Home
last modified time | relevance | path

Searched refs:LastBr (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsBranchExpansion.cpp254 ReverseIter LastBr = getNonDebugInstr(MBB->rbegin(), End); in splitMBB() local
257 if ((LastBr == End) || in splitMBB()
258 (!LastBr->isConditionalBranch() && !LastBr->isUnconditionalBranch())) in splitMBB()
261 ReverseIter FirstBr = getNonDebugInstr(std::next(LastBr), End); in splitMBB()
278 if (Tgt != getTargetMBB(*LastBr)) in splitMBB()
284 NewMBB->splice(NewMBB->end(), MBB, LastBr.getReverse(), MBB->end()); in splitMBB()