mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-17 04:24:00 +00:00
[LCG] Switch the SCC's parent iterators to be value iterators rather
than pointer iterators. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207086 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -329,7 +329,7 @@ TEST(LazyCallGraphTest, InterSCCEdgeRemoval) {
|
||||
|
||||
EXPECT_EQ("b", A.begin()->getFunction().getName());
|
||||
EXPECT_EQ(B.end(), B.begin());
|
||||
EXPECT_EQ(&AC, *BC.parent_begin());
|
||||
EXPECT_EQ(&AC, &*BC.parent_begin());
|
||||
|
||||
CG.removeEdge(A, lookupFunction(*M, "b"));
|
||||
|
||||
|
Reference in New Issue
Block a user