[DAGCombiner] Fix bad identation. NFC
authorCraig Topper <craig.topper@intel.com>
Thu, 30 Aug 2018 19:35:40 +0000 (19:35 +0000)
committerCraig Topper <craig.topper@intel.com>
Thu, 30 Aug 2018 19:35:40 +0000 (19:35 +0000)
llvm-svn: 341103

llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp

index ffe38e3..ce4297d 100644 (file)
@@ -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))