diff options
Diffstat (limited to 'llvm/lib/CodeGen/LiveRangeEdit.h')
| -rw-r--r-- | llvm/lib/CodeGen/LiveRangeEdit.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/LiveRangeEdit.h b/llvm/lib/CodeGen/LiveRangeEdit.h index 0846961f5b9..0e03137c862 100644 --- a/llvm/lib/CodeGen/LiveRangeEdit.h +++ b/llvm/lib/CodeGen/LiveRangeEdit.h @@ -65,9 +65,6 @@ private: /// live range trimmed or entirely removed. SmallPtrSet<const VNInfo*,4> rematted_; - /// createFrom - Create a new virtual register based on OldReg. - LiveInterval &createFrom(unsigned, LiveIntervals&, VirtRegMap &); - /// scanRemattable - Identify the parent_ values that may rematerialize. void scanRemattable(LiveIntervals &lis, const TargetInstrInfo &tii, @@ -113,6 +110,9 @@ public: return uselessRegs_; } + /// createFrom - Create a new virtual register based on OldReg. + LiveInterval &createFrom(unsigned OldReg, LiveIntervals&, VirtRegMap&); + /// create - Create a new register with the same class and original slot as /// parent. LiveInterval &create(LiveIntervals &LIS, VirtRegMap &VRM) { |

