From: Alkis Evlogimenos Date: Wed, 14 Jan 2004 10:44:29 +0000 (+0000) Subject: Properly update #intervals statistic. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d6e40a6cbced8265334ee0375f5996098dfdccb2;p=oota-llvm.git Properly update #intervals statistic. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10847 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index fb577228e82..6826b4d6492 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -119,6 +119,8 @@ bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) { } } + numIntervals += intervals_.size(); + return true; }