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

References

include/llvm/IR/CFG.h
  171       It.Inst->setSuccessor(It.Idx, RHS);
  184       Idx = Inst->getNumSuccessors();
  192       Idx = 0;
  197   int getSuccessorIndex() const { return Idx; }
  199   inline bool operator==(const Self &x) const { return Idx == x.Idx; }
  199   inline bool operator==(const Self &x) const { return Idx == x.Idx; }
  201   inline BlockT *operator*() const { return Inst->getSuccessor(Idx); }
  208     return Idx < RHS.Idx;
  213     return Idx - RHS.Idx;
  213     return Idx - RHS.Idx;
  217     int NewIdx = Idx + RHS;
  219     Idx = NewIdx;