From: Craig Topper Date: Thu, 30 Aug 2018 19:35:40 +0000 (+0000) Subject: [DAGCombiner] Fix bad identation. NFC X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6666861158de68dfdcd2eddf0433f5dbc1a3acef;p=platform%2Fupstream%2Fllvm.git [DAGCombiner] Fix bad identation. NFC llvm-svn: 341103 --- diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index ffe38e3..ce4297d 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -4429,7 +4429,7 @@ SDValue DAGCombiner::visitAND(SDNode *N) { return DAG.FoldConstantArithmetic(ISD::AND, SDLoc(N), VT, N0C, N1C); // canonicalize constant to RHS if (DAG.isConstantIntBuildVectorOrConstantInt(N0) && - !DAG.isConstantIntBuildVectorOrConstantInt(N1)) + !DAG.isConstantIntBuildVectorOrConstantInt(N1)) return DAG.getNode(ISD::AND, SDLoc(N), VT, N1, N0); // fold (and x, -1) -> x if (isAllOnesConstant(N1))