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/RegAllocIterativeScan.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/RegAllocIterativeScan.cpp')
-rw-r--r-- | lib/CodeGen/RegAllocIterativeScan.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/CodeGen/RegAllocIterativeScan.cpp b/lib/CodeGen/RegAllocIterativeScan.cpp index ef57a68989..764c884faf 100644 --- a/lib/CodeGen/RegAllocIterativeScan.cpp +++ b/lib/CodeGen/RegAllocIterativeScan.cpp @@ -19,7 +19,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" @@ -69,7 +68,6 @@ namespace { virtual void getAnalysisUsage(AnalysisUsage &AU) const { AU.addRequired<LiveIntervals>(); - AU.addRequired<LiveVariables>(); MachineFunctionPass::getAnalysisUsage(AU); } |