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

References

lib/Transforms/InstCombine/InstCombineCasts.cpp
 1239     if (In->getType() != CI.getType())
 1240       In = Builder.CreateIntCast(In, CI.getType(), true /*SExt*/);
 1244     return replaceInstUsesWith(CI, In);
 1253       KnownBits Known = computeKnownBits(Op0, 0, &CI);
 1262                        ConstantInt::getAllOnesValue(CI.getType()) :
 1263                        ConstantInt::getNullValue(CI.getType());
 1264           return replaceInstUsesWith(CI, V);
 1295         if (CI.getType() == In->getType())
 1296           return replaceInstUsesWith(CI, In);
 1297         return CastInst::CreateIntegerCast(In, CI.getType(), true/*SExt*/);