From: Dan Gohman Date: Sat, 21 Jun 2008 22:06:07 +0000 (+0000) Subject: Simplify some getNode calls. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=56867520990a4fea1353d55f71bb74a0126554e6;hp=2f1d3108e481758da66662f72673741da86312da;p=oota-llvm.git Simplify some getNode calls. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52604 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 9db98793637..817b62588db 100644 --- a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -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();