diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2006-06-12 16:07:18 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2006-06-12 16:07:18 +0000 |
commit | 232c910b8acd81cbf47fb18595ce557789c2217c (patch) | |
tree | 403bb490598e83b003a9c842943fc169bbaa416f /lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | 337c4ad6e7726555b61a6a75d5172a77fe12c029 (diff) |
Start on my todo list
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28752 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/TargetLowering.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 15a60aafa8..f4e807009b 100644 --- a/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -1511,7 +1511,7 @@ static mu magicu64(uint64_t d) /// 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 @@ SDOperand TargetLowering::BuildSDIV(SDNode *N, SelectionDAG &DAG, /// 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. |