[llvm-commits] [llvm] r52660 - /llvm/trunk/include/llvm/CodeGen/LiveIntervalAnalysis.h

Owen Anderson resistor at mac.com
Mon Jun 23 17:15:10 PDT 2008


Author: resistor
Date: Mon Jun 23 19:15:10 2008
New Revision: 52660

URL: http://llvm.org/viewvc/llvm-project?rev=52660&view=rev
Log:
Remove an incorrect comment.

Modified:
    llvm/trunk/include/llvm/CodeGen/LiveIntervalAnalysis.h

Modified: llvm/trunk/include/llvm/CodeGen/LiveIntervalAnalysis.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/LiveIntervalAnalysis.h?rev=52660&r1=52659&r2=52660&view=diff

==============================================================================
--- llvm/trunk/include/llvm/CodeGen/LiveIntervalAnalysis.h (original)
+++ llvm/trunk/include/llvm/CodeGen/LiveIntervalAnalysis.h Mon Jun 23 19:15:10 2008
@@ -173,8 +173,6 @@
     /// where every function is composed of one thousand units.  This
     /// measure scales properly with empty index slots in the function.
     unsigned getScaledIntervalSize(LiveInterval& I) const {
-      // Factor of 250 comes from 1000 units per function divided
-      // by four slots per instruction.
       return (1000 / InstrSlots::NUM * I.getSize()) / i2miMap_.size();
     }
 





More information about the llvm-commits mailing list