diff options
author | Pete Cooper <peter_cooper@apple.com> | 2012-04-02 22:22:53 +0000 |
---|---|---|
committer | Pete Cooper <peter_cooper@apple.com> | 2012-04-02 22:22:53 +0000 |
commit | 8a06af96698537377275dd7848db69915638dd26 (patch) | |
tree | 63f00f6268a9617f1daaf7ac164523730e62c3d2 /lib/CodeGen/Spiller.cpp | |
parent | 3197b4453d214aa96de3a42da8f8fe189fff2077 (diff) |
Refactored the LiveRangeEdit interface so that MachineFunction, TargetInstrInfo, MachineRegisterInfo, LiveIntervals, and VirtRegMap are all passed into the constructor and stored as members instead of passed in to each method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153903 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/Spiller.cpp')
-rw-r--r-- | lib/CodeGen/Spiller.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/Spiller.cpp b/lib/CodeGen/Spiller.cpp index b72dea732f..a9209ccf37 100644 --- a/lib/CodeGen/Spiller.cpp +++ b/lib/CodeGen/Spiller.cpp @@ -116,7 +116,7 @@ protected: } // Create a new vreg & interval for this instr. - LiveInterval *newLI = &LRE.create(*lis, *vrm); + LiveInterval *newLI = &LRE.create(); newLI->weight = HUGE_VALF; // Update the reg operands & kill flags. |