diff options
author | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-08-27 19:00:29 +0000 |
---|---|---|
committer | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-08-27 19:00:29 +0000 |
commit | ca5d1c378ce17c24404514dcdd4ee9c28ecc721a (patch) | |
tree | 81f83efde3cd6b1abf173115667063199a5b7493 /lib/CodeGen/RegAllocLinearScan.cpp | |
parent | d8d26b3268acf7f157028f0cb60a545b185e8905 (diff) |
Now that LiveIntervals::addIntervalsForSpills is fixed, do not require
LiveVariables.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16076 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAllocLinearScan.cpp')
-rw-r--r-- | lib/CodeGen/RegAllocLinearScan.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/CodeGen/RegAllocLinearScan.cpp b/lib/CodeGen/RegAllocLinearScan.cpp index 4b878d964f..b9af3970e0 100644 --- a/lib/CodeGen/RegAllocLinearScan.cpp +++ b/lib/CodeGen/RegAllocLinearScan.cpp @@ -13,7 +13,6 @@ #define DEBUG_TYPE "regalloc" #include "llvm/Function.h" -#include "llvm/CodeGen/LiveVariables.h" #include "llvm/CodeGen/MachineFunctionPass.h" #include "llvm/CodeGen/MachineInstr.h" #include "llvm/CodeGen/Passes.h" @@ -67,7 +66,6 @@ namespace { virtual void getAnalysisUsage(AnalysisUsage &AU) const { AU.addRequired<LiveIntervals>(); - AU.addRequired<LiveVariables>(); MachineFunctionPass::getAnalysisUsage(AU); } |