[llvm-commits] CVS: llvm/include/llvm/Transforms/Utils/FunctionUtils.h

Devang Patel dpatel at apple.com
Thu Jun 7 15:17:47 PDT 2007



Changes in directory llvm/include/llvm/Transforms/Utils:

FunctionUtils.h updated: 1.11 -> 1.12
---
Log message:

Do not use ETForest as well as DomiantorTree.  DominatorTree is sufficient.


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

 FunctionUtils.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/include/llvm/Transforms/Utils/FunctionUtils.h
diff -u llvm/include/llvm/Transforms/Utils/FunctionUtils.h:1.11 llvm/include/llvm/Transforms/Utils/FunctionUtils.h:1.12
--- llvm/include/llvm/Transforms/Utils/FunctionUtils.h:1.11	Sat Apr  7 02:17:27 2007
+++ llvm/include/llvm/Transforms/Utils/FunctionUtils.h	Thu Jun  7 17:17:16 2007
@@ -24,13 +24,13 @@
 
   /// ExtractCodeRegion - rip out a sequence of basic blocks into a new function
   ///
-  Function* ExtractCodeRegion(ETForest &DS, DominatorTree& DT,
+  Function* ExtractCodeRegion(DominatorTree& DT,
                               const std::vector<BasicBlock*> &code,
                               bool AggregateArgs = false);
 
   /// ExtractLoop - rip out a natural loop into a new function
   ///
-  Function* ExtractLoop(ETForest &DS, DominatorTree& DT, Loop *L,
+  Function* ExtractLoop(DominatorTree& DT, Loop *L,
                         bool AggregateArgs = false);
 
   /// ExtractBasicBlock - rip out a basic block into a new function






More information about the llvm-commits mailing list