Removed tabs. Also fixed my editor...
authorRafael Espindola <rafael.espindola@gmail.com>
Fri, 10 Jun 2011 21:01:53 +0000 (21:01 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Fri, 10 Jun 2011 21:01:53 +0000 (21:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132857 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/TailDuplication.cpp

index 76bae2ac6529e11ed4d070c28f58fe687671c3de..e8eab8f5cf61a5f4b10e0372e3cf358d76001219 100644 (file)
@@ -301,7 +301,7 @@ static unsigned getPHISrcRegOpIdx(MachineInstr *MI, MachineBasicBlock *SrcBB) {
 // 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 @@ void TailDuplicatePass::ProcessPHI(MachineInstr *MI,
                                    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 @@ void TailDuplicatePass::RemoveDeadBlock(MachineBasicBlock *MBB) {
   // Remove the block.
   MBB->eraseFromParent();
 }
-