aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen/LiveIntervalAnalysis.h
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2008-06-24 00:15:10 +0000
committerOwen Anderson <resistor@mac.com>2008-06-24 00:15:10 +0000
commitf155f3e15348cff707576f4038aea34c94dd9acc (patch)
treee587877aa447a6776475445bdad8ffc0b424590e /include/llvm/CodeGen/LiveIntervalAnalysis.h
parentc02f03f5bd794087584322e71448d6e29a4f2a4b (diff)
downloadexternal_llvm-f155f3e15348cff707576f4038aea34c94dd9acc.zip
external_llvm-f155f3e15348cff707576f4038aea34c94dd9acc.tar.gz
external_llvm-f155f3e15348cff707576f4038aea34c94dd9acc.tar.bz2
Remove an incorrect comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52660 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/LiveIntervalAnalysis.h')
-rw-r--r--include/llvm/CodeGen/LiveIntervalAnalysis.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/LiveIntervalAnalysis.h b/include/llvm/CodeGen/LiveIntervalAnalysis.h
index 32f157f..37acd74 100644
--- a/include/llvm/CodeGen/LiveIntervalAnalysis.h
+++ b/include/llvm/CodeGen/LiveIntervalAnalysis.h
@@ -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();
}