diff options
| -rw-r--r-- | llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h b/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h index 4b5ceffa20a..1c61339ed3a 100644 --- a/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h +++ b/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h @@ -302,13 +302,13 @@ namespace llvm {      unsigned getNumConflictsWithPhysReg(const LiveInterval &li,                                          unsigned PhysReg) const; +    /// computeNumbering - Compute the index numbering. +    void computeNumbering(); +    private:            /// computeIntervals - Compute live intervals.      void computeIntervals(); -    /// computeNumbering - Compute the index numbering. -    void computeNumbering(); -          /// handleRegisterDef - update intervals for a register def      /// (calls handlePhysicalRegisterDef and      /// handleVirtualRegisterDef)  | 

