[llvm-commits] CVS: llvm/lib/Target/TargetLowering.cpp

Andrew Lenharth alenhar2 at cs.uiuc.edu
Mon Jun 12 09:07:30 PDT 2006



Changes in directory llvm/lib/Target:

TargetLowering.cpp updated: 1.66 -> 1.67
---
Log message:

Start on my todo list

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

 TargetLowering.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/Target/TargetLowering.cpp
diff -u llvm/lib/Target/TargetLowering.cpp:1.66 llvm/lib/Target/TargetLowering.cpp:1.67
--- llvm/lib/Target/TargetLowering.cpp:1.66	Wed May 17 13:22:14 2006
+++ llvm/lib/Target/TargetLowering.cpp	Mon Jun 12 11:07:18 2006
@@ -1511,7 +1511,7 @@
 /// multiplying by a magic number.  See:
 /// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
 SDOperand TargetLowering::BuildSDIV(SDNode *N, SelectionDAG &DAG, 
-				    std::list<SDNode*>* Created) const {
+				    std::vector<SDNode*>* Created) const {
   MVT::ValueType VT = N->getValueType(0);
   
   // Check to see if we can do this.
@@ -1559,7 +1559,7 @@
 /// multiplying by a magic number.  See:
 /// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
 SDOperand TargetLowering::BuildUDIV(SDNode *N, SelectionDAG &DAG,
-				    std::list<SDNode*>* Created) const {
+				    std::vector<SDNode*>* Created) const {
   MVT::ValueType VT = N->getValueType(0);
   
   // Check to see if we can do this.






More information about the llvm-commits mailing list