aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/RegAllocLinearScan.cpp
diff options
context:
space:
mode:
authorAlkis Evlogimenos <alkis@evlogimenos.com>2004-08-27 04:51:13 +0000
committerAlkis Evlogimenos <alkis@evlogimenos.com>2004-08-27 04:51:13 +0000
commit3f06e687836528dc5b1f30bfe0ae2173f2f66468 (patch)
treeb4ba304f944b8eaaa2113ebb9045d9ed94b553ef /lib/CodeGen/RegAllocLinearScan.cpp
parent5709998993cade99e4aeda1c9d44a1bdf54aa720 (diff)
downloadexternal_llvm-3f06e687836528dc5b1f30bfe0ae2173f2f66468.zip
external_llvm-3f06e687836528dc5b1f30bfe0ae2173f2f66468.tar.gz
external_llvm-3f06e687836528dc5b1f30bfe0ae2173f2f66468.tar.bz2
The linear scan variants do not require the LiveVariables analysis.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16071 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAllocLinearScan.cpp')
-rw-r--r--lib/CodeGen/RegAllocLinearScan.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/CodeGen/RegAllocLinearScan.cpp b/lib/CodeGen/RegAllocLinearScan.cpp
index 6858744..b9af397 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"
@@ -66,7 +65,6 @@ namespace {
}
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
- AU.addRequired<LiveVariables>();
AU.addRequired<LiveIntervals>();
MachineFunctionPass::getAnalysisUsage(AU);
}