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

References

lib/Analysis/LoopInfo.cpp
  810     if (L == &Unloop) {
  816     if (L != &Unloop && Unloop.contains(L)) {
  816     if (L != &Unloop && Unloop.contains(L)) {
  822       assert(L->getParentLoop() == &Unloop && "cannot skip into nested loops");
  825       L = SubloopParents[L];
  825       L = SubloopParents[L];
  828     if (L == &Unloop) {
  832     if (L && !L->contains(&Unloop)) {
  832     if (L && !L->contains(&Unloop)) {
  833       L = L->getParentLoop();
  833       L = L->getParentLoop();
  836     if (NearLoop == &Unloop || !NearLoop || NearLoop->contains(L))
  837       NearLoop = L;