diff options
author | Owen Anderson <resistor@mac.com> | 2008-05-30 20:14:04 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2008-05-30 20:14:04 +0000 |
commit | 15a17f548188726260c3a0eeb7a4588e2c1d6f2c (patch) | |
tree | 77cd2bbabaa8ed98616cd364e7c8a1d96fa4315a | |
parent | 74a0c28fba95a307454146d7018f9671948b3102 (diff) |
Forgot to commit this file.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51786 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/LiveIntervalAnalysis.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/LiveIntervalAnalysis.h b/include/llvm/CodeGen/LiveIntervalAnalysis.h index 4b5ceffa20..1c61339ed3 100644 --- a/include/llvm/CodeGen/LiveIntervalAnalysis.h +++ b/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) |