reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1408 CG.buildRefSCCs(); 1409 auto I = CG.postorder_ref_scc_begin(), E = CG.postorder_ref_scc_end(); 1409 auto I = CG.postorder_ref_scc_begin(), E = CG.postorder_ref_scc_end(); 1413 LazyCallGraph::Node &A = *CG.lookup(lookupFunction(*M, "a")); 1414 LazyCallGraph::Node &B = *CG.lookup(lookupFunction(*M, "b")); 1415 LazyCallGraph::Node &C = *CG.lookup(lookupFunction(*M, "c")); 1416 EXPECT_EQ(&RC, CG.lookupRefSCC(A)); 1417 EXPECT_EQ(&RC, CG.lookupRefSCC(B)); 1418 EXPECT_EQ(&RC, CG.lookupRefSCC(C)); 1431 EXPECT_EQ(&BRC, CG.lookupRefSCC(B)); 1433 EXPECT_EQ(&ACRC, CG.lookupRefSCC(A)); 1434 EXPECT_EQ(&ACRC, CG.lookupRefSCC(C)); 1435 auto J = CG.postorder_ref_scc_begin();