Whitespace clean up (tabs with spaces)
authorMon P Wang <wangmp@apple.com>
Thu, 11 Dec 2008 00:44:22 +0000 (00:44 +0000)
committerMon P Wang <wangmp@apple.com>
Thu, 11 Dec 2008 00:44:22 +0000 (00:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60866 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/LegalizeDAG.cpp

index 494001b1a20bb7192cd03e9e52d940d17522bf9e..405aec65b3375a6e87653bf28587df51aff47df0 100644 (file)
@@ -3928,15 +3928,15 @@ SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
       switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
       default: assert(0 && "Unknown TRUNCATE legalization operation action!");
       case TargetLowering::Custom:
-       isCustom = true;
-       // FALLTHROUGH
+        isCustom = true;
+        // FALLTHROUGH
       case TargetLowering::Legal:
-       Result = DAG.UpdateNodeOperands(Result, Tmp1);
-       if (isCustom) {
-         Tmp1 = TLI.LowerOperation(Result, DAG);
-         if (Tmp1.getNode()) Result = Tmp1;
-       }
-       break;
+        Result = DAG.UpdateNodeOperands(Result, Tmp1);
+        if (isCustom) {
+          Tmp1 = TLI.LowerOperation(Result, DAG);
+          if (Tmp1.getNode()) Result = Tmp1;
+        }
+        break;
       }
       break;
     case Expand: