Removed tabs. Also fixed my editor...

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132857 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/TailDuplication.cpp b/lib/CodeGen/TailDuplication.cpp
index 76bae2a..e8eab8f 100644
--- a/lib/CodeGen/TailDuplication.cpp
+++ b/lib/CodeGen/TailDuplication.cpp
@@ -301,7 +301,7 @@
 // used to determine which registers are liveout while modifying the
 // block (which is why we need to copy the information).
 static void getRegsUsedByPHIs(const MachineBasicBlock &BB,
-			      DenseSet<unsigned> *UsedByPhi) {
+                              DenseSet<unsigned> *UsedByPhi) {
   for(MachineBasicBlock::const_iterator I = BB.begin(), E = BB.end();
       I != E; ++I) {
     const MachineInstr &MI = *I;
@@ -337,7 +337,7 @@
                                    MachineBasicBlock *PredBB,
                                    DenseMap<unsigned, unsigned> &LocalVRMap,
                            SmallVector<std::pair<unsigned,unsigned>, 4> &Copies,
-				   const DenseSet<unsigned> &RegsUsedByPhi,
+                                   const DenseSet<unsigned> &RegsUsedByPhi,
                                    bool Remove) {
   unsigned DefReg = MI->getOperand(0).getReg();
   unsigned SrcOpIdx = getPHISrcRegOpIdx(MI, PredBB);
@@ -753,4 +753,3 @@
   // Remove the block.
   MBB->eraseFromParent();
 }
-