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

References

lib/Transforms/InstCombine/InstCombineCompares.cpp
  162   if (GEP->getNumOperands() < 3 ||
  163       !isa<ConstantInt>(GEP->getOperand(1)) ||
  164       !cast<ConstantInt>(GEP->getOperand(1))->isZero() ||
  165       isa<Constant>(GEP->getOperand(2)))
  174   for (unsigned i = 3, e = GEP->getNumOperands(); i != e; ++i) {
  175     ConstantInt *Idx = dyn_cast<ConstantInt>(GEP->getOperand(i));
  308   Value *Idx = GEP->getOperand(2);
  313   if (!GEP->isInBounds()) {
  314     Type *IntPtrTy = DL.getIntPtrType(GEP->getType());