Home | History | Annotate | Download | only in IPO

Lines Matching refs:BCI

859     if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
860 if (BCI->getType() == NewGV->getType()) {
861 BCI->replaceAllUsesWith(NewGV);
862 BCI->eraseFromParent();
864 BCI->setOperand(0, NewGV);
993 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Inst)) {
994 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(BCI, GV, PHIs))
1542 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Malloc))
1543 CI = cast<CallInst>(BCI->getOperand(0));