[llvm-commits] [llvm] r129334 - /llvm/trunk/lib/CodeGen/RegAllocFast.cpp

Eric Christopher echristo at apple.com
Mon Apr 11 17:48:08 PDT 2011


Author: echristo
Date: Mon Apr 11 19:48:08 2011
New Revision: 129334

URL: http://llvm.org/viewvc/llvm-project?rev=129334&view=rev
Log:
Fix typo.

Modified:
    llvm/trunk/lib/CodeGen/RegAllocFast.cpp

Modified: llvm/trunk/lib/CodeGen/RegAllocFast.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/RegAllocFast.cpp?rev=129334&r1=129333&r2=129334&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/RegAllocFast.cpp (original)
+++ llvm/trunk/lib/CodeGen/RegAllocFast.cpp Mon Apr 11 19:48:08 2011
@@ -433,7 +433,7 @@
     return LiveVirtRegs.lookup(VirtReg).Dirty ? spillDirty : spillClean;
   }
 
-  // This is a disabled register, add up const of aliases.
+  // This is a disabled register, add up cost of aliases.
   unsigned Cost = 0;
   for (const unsigned *AS = TRI->getAliasSet(PhysReg);
        unsigned Alias = *AS; ++AS) {





More information about the llvm-commits mailing list