[llvm-commits] CVS: llvm/include/llvm/Analysis/Dominators.h

Devang Patel dpatel at apple.com
Mon Jun 4 16:45:24 PDT 2007



Changes in directory llvm/include/llvm/Analysis:

Dominators.h updated: 1.89 -> 1.90
---
Log message:

s/ETNode::getChildren/ETNode::getETNodeChildren/g


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

 Dominators.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/include/llvm/Analysis/Dominators.h
diff -u llvm/include/llvm/Analysis/Dominators.h:1.89 llvm/include/llvm/Analysis/Dominators.h:1.90
--- llvm/include/llvm/Analysis/Dominators.h:1.89	Mon Jun  4 12:37:59 2007
+++ llvm/include/llvm/Analysis/Dominators.h	Mon Jun  4 18:45:02 2007
@@ -343,7 +343,7 @@
     return idom ? idom->getData<BasicBlock>() : 0;
   }
   
-  void getChildren(BasicBlock *A, std::vector<BasicBlock*>& children) const {
+  void getETNodeChildren(BasicBlock *A, std::vector<BasicBlock*>& children) const {
     ETNode *NodeA = getNode(A);
     if (!NodeA) return;
     const ETNode* son = NodeA->getSon();






More information about the llvm-commits mailing list