diff options
author | Amaury Sechet <deadalnix@gmail.com> | 2017-05-10 17:58:28 +0000 |
---|---|---|
committer | Amaury Sechet <deadalnix@gmail.com> | 2017-05-10 17:58:28 +0000 |
commit | 197685c6d8977135c227bd62c38f34106809b9d2 (patch) | |
tree | ca09bbc129521206da7bd7b8a64794fa8ba79fa5 /llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | |
parent | daffb57605bd93186f09025823cd0fb666f14a15 (diff) | |
download | bcm5719-llvm-197685c6d8977135c227bd62c38f34106809b9d2.tar.gz bcm5719-llvm-197685c6d8977135c227bd62c38f34106809b9d2.zip |
Small refactoring in DAGCombine. NFC
llvm-svn: 302699
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 1da8fe76263..28354c1f457 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -2131,17 +2131,17 @@ SDValue DAGCombiner::visitADDCARRY(SDNode *N) { SDValue N0 = N->getOperand(0); SDValue N1 = N->getOperand(1); SDValue CarryIn = N->getOperand(2); + SDLoc DL(N); // canonicalize constant to RHS ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0); ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1); if (N0C && !N1C) - return DAG.getNode(ISD::ADDCARRY, SDLoc(N), N->getVTList(), - N1, N0, CarryIn); + return DAG.getNode(ISD::ADDCARRY, DL, N->getVTList(), N1, N0, CarryIn); // fold (addcarry x, y, false) -> (uaddo x, y) if (isNullConstant(CarryIn)) - return DAG.getNode(ISD::UADDO, SDLoc(N), N->getVTList(), N0, N1); + return DAG.getNode(ISD::UADDO, DL, N->getVTList(), N0, N1); if (SDValue Combined = visitADDCARRYLike(N0, N1, CarryIn, N)) return Combined; |