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)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77752 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/LegalizeTypes.cpp

index c80b34db9901fedf6779aca93d78cba15f74ac61..82d98a72d5bc95f0ee723d29461a80b6db4927bd 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);
     }
   }