Searched refs:fromMBB (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.2-release/contrib/llvm/lib/CodeGen/
H A DMachineBasicBlock.cpp574 void MachineBasicBlock::transferSuccessors(MachineBasicBlock *fromMBB) { argument
575 if (this == fromMBB)
578 while (!fromMBB->succ_empty()) {
579 MachineBasicBlock *Succ = *fromMBB->succ_begin();
583 if (!fromMBB->Weights.empty())
584 Weight = *fromMBB->Weights.begin();
587 fromMBB->removeSuccessor(Succ);
592 MachineBasicBlock::transferSuccessorsAndUpdatePHIs(MachineBasicBlock *fromMBB) { argument
593 if (this == fromMBB)
596 while (!fromMBB
[all...]
/freebsd-10.2-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineBasicBlock.h383 /// machine basic block (i.e., copies all the successors fromMBB and
384 /// remove all the successors from fromMBB).
385 void transferSuccessors(MachineBasicBlock *fromMBB);
389 /// which refer to fromMBB to refer to this.
390 void transferSuccessorsAndUpdatePHIs(MachineBasicBlock *fromMBB);

Completed in 88 milliseconds