Use a range insert instead of an explicit loop.
authorDan Gohman <gohman@apple.com>
Fri, 31 Jul 2009 23:36:06 +0000 (23:36 +0000)
committerDan Gohman <gohman@apple.com>
Fri, 31 Jul 2009 23:36:06 +0000 (23:36 +0000)
llvm-svn: 77752

llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp

index c80b34d..82d98a7 100644 (file)
@@ -480,8 +480,7 @@ SDNode *DAGTypeLegalizer::AnalyzeNewNode(SDNode *N) {
       NewOps.push_back(Op);
     } else if (Op != OrigOp) {
       // This is the first operand to change - add all operands so far.
-      for (unsigned j = 0; j < i; ++j)
-        NewOps.push_back(N->getOperand(j));
+      NewOps.insert(NewOps.end(), N->op_begin(), N->op_begin() + i);
       NewOps.push_back(Op);
     }
   }