[llvm-commits] CVS: llvm/include/llvm/Target/TargetLowering.h

Andrew Lenharth alenhar2 at cs.uiuc.edu
Mon Jun 12 09:06:20 PDT 2006



Changes in directory llvm/include/llvm/Target:

TargetLowering.h updated: 1.76 -> 1.77
---
Log message:

Start on my todo list

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

 TargetLowering.h |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)


Index: llvm/include/llvm/Target/TargetLowering.h
diff -u llvm/include/llvm/Target/TargetLowering.h:1.76 llvm/include/llvm/Target/TargetLowering.h:1.77
--- llvm/include/llvm/Target/TargetLowering.h:1.76	Wed May 24 14:21:13 2006
+++ llvm/include/llvm/Target/TargetLowering.h	Mon Jun 12 11:06:08 2006
@@ -25,7 +25,6 @@
 #include "llvm/Type.h"
 #include "llvm/CodeGen/SelectionDAGNodes.h"
 #include <map>
-#include <list>
 
 namespace llvm {
   class Value;
@@ -654,9 +653,9 @@
   // Div utility functions
   //
   SDOperand BuildSDIV(SDNode *N, SelectionDAG &DAG, 
-		      std::list<SDNode*>* Created) const;
+		      std::vector<SDNode*>* Created) const;
   SDOperand BuildUDIV(SDNode *N, SelectionDAG &DAG, 
-		      std::list<SDNode*>* Created) const;
+		      std::vector<SDNode*>* Created) const;
 
 
 protected:






More information about the llvm-commits mailing list