Style police: Expand the tabs to spaces!
authorScott Michel <scottm@aero.org>
Thu, 2 Aug 2007 02:22:46 +0000 (02:22 +0000)
committerScott Michel <scottm@aero.org>
Thu, 2 Aug 2007 02:22:46 +0000 (02:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40712 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/LegalizeDAG.cpp

index b25670c33bf2e9f41485b45dfbfdb46c0e778081..274535633ce3b12cc5c252d180ef4c43bc1629e6 100644 (file)
@@ -2879,11 +2879,11 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
     case TargetLowering::Legal:
       Result = DAG.UpdateNodeOperands(Result, Tmp1);
       if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
-         TargetLowering::Custom) {
-       Tmp1 = TLI.LowerOperation(Result, DAG);
-       if (Tmp1.Val) {
-         Result = Tmp1;
-       }
+          TargetLowering::Custom) {
+        Tmp1 = TLI.LowerOperation(Result, DAG);
+        if (Tmp1.Val) {
+          Result = Tmp1;
+        }
       }
       break;
     case TargetLowering::Promote: {