[llvm] r233288 - fix indent; NFC

Sanjay Patel spatel at rotateright.com
Thu Mar 26 09:55:17 PDT 2015


Author: spatel
Date: Thu Mar 26 11:55:17 2015
New Revision: 233288

URL: http://llvm.org/viewvc/llvm-project?rev=233288&view=rev
Log:
fix indent; NFC

Modified:
    llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp

Modified: llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp?rev=233288&r1=233287&r2=233288&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/DAGCombiner.cpp Thu Mar 26 11:55:17 2015
@@ -11979,7 +11979,7 @@ SDValue DAGCombiner::visitVECTOR_SHUFFLE
       // We may have jumped through bitcasts, so the type of the
       // BUILD_VECTOR may not match the type of the shuffle.
       if (V->getValueType(0) != VT)
-          NewBV = DAG.getNode(ISD::BITCAST, SDLoc(N), VT, NewBV);
+        NewBV = DAG.getNode(ISD::BITCAST, SDLoc(N), VT, NewBV);
       return NewBV;
     }
   }





More information about the llvm-commits mailing list