diff options
author | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-08-27 04:51:13 +0000 |
---|---|---|
committer | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-08-27 04:51:13 +0000 |
commit | 11f0fc8eda1243e8683917d5a1f7bd340f69df03 (patch) | |
tree | 235e10d02f468e0083bb5e7e75e72b0d5bdf2ec3 /llvm/lib/CodeGen | |
parent | fa2bf42539e7b0a92d763511e6fd658268dafe9b (diff) | |
download | bcm5719-llvm-11f0fc8eda1243e8683917d5a1f7bd340f69df03.tar.gz bcm5719-llvm-11f0fc8eda1243e8683917d5a1f7bd340f69df03.zip |
The linear scan variants do not require the LiveVariables analysis.
llvm-svn: 16071
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/RegAllocIterativeScan.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/CodeGen/RegAllocLinearScan.cpp | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/RegAllocIterativeScan.cpp b/llvm/lib/CodeGen/RegAllocIterativeScan.cpp index ddd0451b600..764c884fafe 100644 --- a/llvm/lib/CodeGen/RegAllocIterativeScan.cpp +++ b/llvm/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" @@ -68,7 +67,6 @@ namespace { } virtual void getAnalysisUsage(AnalysisUsage &AU) const { - AU.addRequired<LiveVariables>(); AU.addRequired<LiveIntervals>(); MachineFunctionPass::getAnalysisUsage(AU); } diff --git a/llvm/lib/CodeGen/RegAllocLinearScan.cpp b/llvm/lib/CodeGen/RegAllocLinearScan.cpp index 6858744ba1b..b9af3970e0e 100644 --- a/llvm/lib/CodeGen/RegAllocLinearScan.cpp +++ b/llvm/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); } |