reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1645 CG.buildRefSCCs(); 1646 auto I = CG.postorder_ref_scc_begin(); 1648 EXPECT_EQ(CG.postorder_ref_scc_end(), I); 1650 LazyCallGraph::Node &A = *CG.lookup(lookupFunction(*M, "a")); 1651 LazyCallGraph::Node &B = *CG.lookup(lookupFunction(*M, "b")); 1652 LazyCallGraph::Node &C = *CG.lookup(lookupFunction(*M, "c")); 1653 LazyCallGraph::Node &D = *CG.lookup(lookupFunction(*M, "d")); 1654 LazyCallGraph::SCC &AC = *CG.lookupSCC(A); 1655 LazyCallGraph::SCC &BC = *CG.lookupSCC(B); 1656 LazyCallGraph::SCC &CC = *CG.lookupSCC(C); 1657 LazyCallGraph::SCC &DC = *CG.lookupSCC(D); 1695 EXPECT_EQ(&BC, CG.lookupSCC(B)); 1696 EXPECT_EQ(&BC, CG.lookupSCC(C));