[llvm-commits] CVS: llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp
    Brian Gaeke 
    gaeke at cs.uiuc.edu
       
    Tue Sep 16 10:39:02 PDT 2003
    
    
  
Changes in directory llvm/lib/CodeGen/RegAlloc:
PhyRegAlloc.cpp updated: 1.108 -> 1.109
---
Log message:
Fix typo in comment. Take out some random whitespace.
(Partial merge from my working file)
---
Diffs of the changes:
Index: llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp
diff -u llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp:1.108 llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp:1.109
--- llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp:1.108	Thu Sep 11 17:34:13 2003
+++ llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp	Tue Sep 16 10:38:05 2003
@@ -1397,25 +1397,22 @@
 
 
 //----------------------------------------------------------------------------
-// The entry pont to Register Allocation
+// The entry point to Register Allocation
 //----------------------------------------------------------------------------
 
 void PhyRegAlloc::allocateRegisters()
 {
-
   // make sure that we put all register classes into the RegClassList 
   // before we call constructLiveRanges (now done in the constructor of 
   // PhyRegAlloc class).
   //
   LRI.constructLiveRanges();            // create LR info
-
   if (DEBUG_RA >= RA_DEBUG_LiveRanges)
     LRI.printLiveRanges();
   
   createIGNodeListsAndIGs();            // create IGNode list and IGs
 
   buildInterferenceGraphs();            // build IGs in all reg classes
-  
   
   if (DEBUG_RA >= RA_DEBUG_LiveRanges) {
     // print all LRs in all reg classes
    
    
More information about the llvm-commits
mailing list