Home | History | Annotate | Download | only in IPO

Lines Matching refs:BCI

855     if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
856 if (BCI->getType() == NewGV->getType()) {
857 BCI->replaceAllUsesWith(NewGV);
858 BCI->eraseFromParent();
860 BCI->setOperand(0, NewGV);
990 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(Inst)) {
991 if (!ValueIsOnlyUsedLocallyOrStoredToOneGlobal(BCI, GV, PHIs))
1548 if (BitCastInst *BCI = dyn_cast<BitCastInst>(Malloc))
1549 CI = cast<CallInst>(BCI->getOperand(0));