Remove an incorrect comment.
authorOwen Anderson <resistor@mac.com>
Tue, 24 Jun 2008 00:15:10 +0000 (00:15 +0000)
committerOwen Anderson <resistor@mac.com>
Tue, 24 Jun 2008 00:15:10 +0000 (00:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52660 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/LiveIntervalAnalysis.h

index 32f157f0c1d2b9a17310b2ce6afb3d8638b69363..37acd74ca801cb73657c98f8f800c637b34f89a1 100644 (file)
@@ -173,8 +173,6 @@ namespace llvm {
     /// 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();
     }