detabify llvm, patch by Mike Stump!



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48577 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp
index 265a330..d2aa2bb 100644
--- a/lib/CodeGen/MachineInstr.cpp
+++ b/lib/CodeGen/MachineInstr.cpp
@@ -738,7 +738,7 @@
       if (!Reg || IncomingReg == Reg ||
           !TargetRegisterInfo::isPhysicalRegister(Reg) ||
           !TargetRegisterInfo::isPhysicalRegister(IncomingReg)) {
-	++i;
+        ++i;
         continue;
       }
 
@@ -748,17 +748,17 @@
         return true;
 
       if (RegInfo->isSubRegister(IncomingReg, Reg) && MO.isKill()) {
-	if (MO.isImplicit()) {
-	  // Remove this implicit use that marks the sub-register
-	  // "kill". Let the super-register take care of this
-	  // information.
-	  RemoveOperand(i);
-	  --e;
-	  continue;
-	} else {
-	  // The super-register is going to take care of this kill
-	  // information.
-	  MO.setIsKill(false);
+        if (MO.isImplicit()) {
+          // Remove this implicit use that marks the sub-register
+          // "kill". Let the super-register take care of this
+          // information.
+          RemoveOperand(i);
+          --e;
+          continue;
+        } else {
+          // The super-register is going to take care of this kill
+          // information.
+          MO.setIsKill(false);
         }
       }
     }
@@ -781,9 +781,9 @@
       }
 
       if (TargetRegisterInfo::isPhysicalRegister(Reg) &&
-	  TargetRegisterInfo::isPhysicalRegister(IncomingReg) &&
-	  RegInfo->isSuperRegister(IncomingReg, Reg) &&
-	  MO.isKill())
+          TargetRegisterInfo::isPhysicalRegister(IncomingReg) &&
+          RegInfo->isSuperRegister(IncomingReg, Reg) &&
+          MO.isKill())
         // A super-register kill already exists.
         return true;
     }