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

References

unittests/Analysis/LazyCallGraphTest.cpp
  420   LazyCallGraph::Node &A = CG.get(lookupFunction(*M, "a"));
  421   LazyCallGraph::Node &B = CG.get(lookupFunction(*M, "b"));
  427   LazyCallGraph::Node &C = CG.get(lookupFunction(*M, "c"));
  429   CG.insertEdge(B, C, LazyCallGraph::Edge::Call);
  433   CG.insertEdge(C, B, LazyCallGraph::Edge::Call);
  437   CG.insertEdge(C, C, LazyCallGraph::Edge::Call);
  442   CG.removeEdge(C, B);
  446   CG.removeEdge(C, C);
  449   CG.removeEdge(B, C);