[llvm-commits] CVS: poolalloc/lib/PoolAllocate/TransformFunctionBody.cpp

Chris Lattner lattner at cs.uiuc.edu
Mon Nov 1 13:04:01 PST 2004



Changes in directory poolalloc/lib/PoolAllocate:

TransformFunctionBody.cpp updated: 1.29 -> 1.30

---
Log message:

No need to poke into CBU


---
Diffs of the changes:  (+3 -3)

Index: poolalloc/lib/PoolAllocate/TransformFunctionBody.cpp
diff -u poolalloc/lib/PoolAllocate/TransformFunctionBody.cpp:1.29 poolalloc/lib/PoolAllocate/TransformFunctionBody.cpp:1.30
--- poolalloc/lib/PoolAllocate/TransformFunctionBody.cpp:1.29	Thu Oct 28 15:06:41 2004
+++ poolalloc/lib/PoolAllocate/TransformFunctionBody.cpp	Mon Nov  1 15:03:51 2004
@@ -383,9 +383,9 @@
     
 #ifndef NDEBUG
     // Verify that all potential callees at call site have the same DS graph.
-    const BUDataStructures::ActualCalleesTy& ActualCallees =
-      ECGraphs.getCBUDataStructures()->getActualCallees();
-    BUDataStructures::ActualCalleesTy::const_iterator I, E;
+    const EquivClassGraphs::ActualCalleesTy& ActualCallees =
+      ECGraphs.getActualCallees();
+    EquivClassGraphs::ActualCalleesTy::const_iterator I, E;
     for (tie(I, E) = ActualCallees.equal_range(OrigInst); I != E; ++I)
       if (!I->second->isExternal())
         assert(CalleeGraph == &ECGraphs.getDSGraph(*I->second) &&





More information about the llvm-commits mailing list