Simplify some getNode calls.
authorDan Gohman <gohman@apple.com>
Sat, 21 Jun 2008 22:06:07 +0000 (22:06 +0000)
committerDan Gohman <gohman@apple.com>
Sat, 21 Jun 2008 22:06:07 +0000 (22:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52604 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/DAGCombiner.cpp

index 9db987936377eefe8ad48140177343adfe9559c4..817b62588dbeddb76cbd21ab15e1710a89d7cc23 100644 (file)
@@ -1058,8 +1058,7 @@ SDOperand DAGCombiner::visitADDC(SDNode *N) {
   
   // canonicalize constant to RHS.
   if (N0C && !N1C) {
-    SDOperand Ops[] = { N1, N0 };
-    return DAG.getNode(ISD::ADDC, N->getVTList(), Ops, 2);
+    return DAG.getNode(ISD::ADDC, N->getVTList(), N1, N0);
   }
   
   // fold (addc x, 0) -> x + no carry out
@@ -1095,14 +1094,12 @@ SDOperand DAGCombiner::visitADDE(SDNode *N) {
   
   // canonicalize constant to RHS
   if (N0C && !N1C) {
-    SDOperand Ops[] = { N1, N0, CarryIn };
-    return DAG.getNode(ISD::ADDE, N->getVTList(), Ops, 3);
+    return DAG.getNode(ISD::ADDE, N->getVTList(), N1, N0, CarryIn);
   }
   
   // fold (adde x, y, false) -> (addc x, y)
   if (CarryIn.getOpcode() == ISD::CARRY_FALSE) {
-    SDOperand Ops[] = { N1, N0 };
-    return DAG.getNode(ISD::ADDC, N->getVTList(), Ops, 2);
+    return DAG.getNode(ISD::ADDC, N->getVTList(), N1, N0);
   }
   
   return SDOperand();