[llvm-commits] CVS: llvm/lib/CodeGen/PHIElimination.cpp RegAllocSimple.cpp

Misha Brukman brukman at cs.uiuc.edu
Thu Apr 21 21:01:26 PDT 2005



Changes in directory llvm/lib/CodeGen:

PHIElimination.cpp updated: 1.34 -> 1.35
RegAllocSimple.cpp updated: 1.63 -> 1.64
---
Log message:

Convert tabs to spaces


---
Diffs of the changes:  (+3 -3)

 PHIElimination.cpp |    4 ++--
 RegAllocSimple.cpp |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/lib/CodeGen/PHIElimination.cpp
diff -u llvm/lib/CodeGen/PHIElimination.cpp:1.34 llvm/lib/CodeGen/PHIElimination.cpp:1.35
--- llvm/lib/CodeGen/PHIElimination.cpp:1.34	Thu Apr 21 17:33:33 2005
+++ llvm/lib/CodeGen/PHIElimination.cpp	Thu Apr 21 23:01:15 2005
@@ -32,7 +32,7 @@
       // Eliminate PHI instructions by inserting copies into predecessor blocks.
       //
       for (MachineFunction::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I)
-	Changed |= EliminatePHINodes(Fn, *I);
+        Changed |= EliminatePHINodes(Fn, *I);
 
       //std::cerr << "AFTER PHI NODE ELIM:\n";
       //Fn.dump();
@@ -52,7 +52,7 @@
   };
 
   RegisterPass<PNE> X("phi-node-elimination",
-		      "Eliminate PHI nodes for register allocation");
+                      "Eliminate PHI nodes for register allocation");
 }
 
 


Index: llvm/lib/CodeGen/RegAllocSimple.cpp
diff -u llvm/lib/CodeGen/RegAllocSimple.cpp:1.63 llvm/lib/CodeGen/RegAllocSimple.cpp:1.64
--- llvm/lib/CodeGen/RegAllocSimple.cpp:1.63	Thu Apr 21 17:33:33 2005
+++ llvm/lib/CodeGen/RegAllocSimple.cpp	Thu Apr 21 23:01:15 2005
@@ -91,7 +91,7 @@
 /// getStackSpaceFor - This allocates space for the specified virtual
 /// register to be held on the stack.
 int RegAllocSimple::getStackSpaceFor(unsigned VirtReg,
-				     const TargetRegisterClass *RC) {
+                                     const TargetRegisterClass *RC) {
   // Find the location VirtReg would belong...
   std::map<unsigned, int>::iterator I =
     StackSlotForVirtReg.lower_bound(VirtReg);






More information about the llvm-commits mailing list