reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
166 while (phi != BB->end() && phi->isPHI()) { 166 while (phi != BB->end() && phi->isPHI()) { 167 for (unsigned i = phi->getNumOperands() - 1; i >= 2; i-=2) 168 if (!preds.count(phi->getOperand(i).getMBB())) { 169 phi->RemoveOperand(i); 170 phi->RemoveOperand(i-1); 174 if (phi->getNumOperands() == 3) { 175 const MachineOperand &Input = phi->getOperand(1); 176 const MachineOperand &Output = phi->getOperand(0); 195 BuildMI(*BB, BB->getFirstNonPHI(), phi->getDebugLoc(), 199 phi++->eraseFromParent(); 204 ++phi;