reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/InstCombine/InstCombineSelect.cpp
 2239   if (SelType->isIntOrIntVectorTy(1) &&
 2281   if (SelType->isIntOrIntVectorTy() &&
 2282       CondVal->getType()->isVectorTy() == SelType->isVectorTy()) {
 2285       return new ZExtInst(CondVal, SelType);
 2289       return new SExtInst(CondVal, SelType);
 2294       return new ZExtInst(NotCond, SelType);
 2300       return new SExtInst(NotCond, SelType);
 2413   if (SelType->isIntOrIntVectorTy() || SelType->isFPOrFPVectorTy()) {
 2413   if (SelType->isIntOrIntVectorTy() || SelType->isFPOrFPVectorTy()) {
 2440       bool IsCastNeeded = LHS->getType() != SelType;
 2464         Value *NewCast = Builder.CreateCast(CastOp, NewSI, SelType);
 2634   if (VectorType *VecTy = dyn_cast<VectorType>(SelType)) {