aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2008-07-01 22:34:11 +0000
committerOwen Anderson <resistor@mac.com>2008-07-01 22:34:11 +0000
commit4474c792c6ef21862dd166fd0de59d70c4c8d489 (patch)
tree6c677a72e7118449c1ae94251e0965bb4f6ffb8e /lib/CodeGen/SelectionDAG/SelectionDAG.cpp
parente1bf7fdcb4be19c556f4c789dd43864f5d13c5e4 (diff)
No need to use std::distance. We can just count the number of operands
much more cheaply. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52990 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAG.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index 17a5fa7d84..0a23966f31 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -527,13 +527,16 @@ void SelectionDAG::RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener){
// Next, brutally remove the operand list. This is safe to do, as there are
// no cycles in the graph.
+ unsigned op_num = 0;
for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
SDNode *Operand = I->getVal();
- Operand->removeUser(std::distance(N->op_begin(), I), N);
+ Operand->removeUser(op_num, N);
// Now that we removed this operand, see if there are no uses of it left.
if (Operand->use_empty())
DeadNodes.push_back(Operand);
+
+ op_num++;
}
if (N->OperandsNeedDelete) {
delete[] N->OperandList;