Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:OPN

207     PHINode *OPN = cast<PHINode>(I);
208 PHINode *NPN = PHINode::Create(Ty, OPN->getNumIncomingValues());
209 for (unsigned i = 0, e = OPN->getNumIncomingValues(); i != e; ++i) {
210 Value *V =EvaluateInDifferentType(OPN->getIncomingValue(i), Ty, isSigned);
211 NPN->addIncoming(V, OPN->getIncomingBlock(i));