Lines Matching defs:OpBC
6712 } else if (auto *OpBC = dyn_cast<BitCastInst>(V)) {
6714 ConvertTy = OpBC->getOperand(0)->getType();
6715 if (OpBC->getOperand(0)->getType() != ConvertTy)
6717 if (Defs.insert(OpBC).second) {
6718 Worklist.push_back(OpBC);
6719 AnyAnchored |= !isa<LoadInst>(OpBC->getOperand(0)) &&
6720 !isa<ExtractElementInst>(OpBC->getOperand(0));
6743 } else if (auto *OpBC = dyn_cast<BitCastInst>(V)) {
6745 ConvertTy = OpBC->getType();
6746 if (OpBC->getType() != ConvertTy)
6748 Uses.insert(OpBC);
6750 any_of(OpBC->users(), [](User *U) { return !isa<StoreInst>(U); });