summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/StackSlotColoring.cpp
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-02-21 04:51:19 +0000
committerAndrew Trick <atrick@apple.com>2012-02-21 04:51:19 +0000
commit5c714e79859116672383af512efc032dc1cb5ca7 (patch)
tree7b4c799b158ac3bc2b5f447dd50d46f1533e1d1d /llvm/lib/CodeGen/StackSlotColoring.cpp
parenta6807a65574e0f4fe022fac6e01e544c79534ad2 (diff)
downloadbcm5719-llvm-5c714e79859116672383af512efc032dc1cb5ca7.tar.gz
bcm5719-llvm-5c714e79859116672383af512efc032dc1cb5ca7.zip
StackSlotColoring does not use a VirtRegMap
llvm-svn: 151031
Diffstat (limited to 'llvm/lib/CodeGen/StackSlotColoring.cpp')
-rw-r--r--llvm/lib/CodeGen/StackSlotColoring.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/StackSlotColoring.cpp b/llvm/lib/CodeGen/StackSlotColoring.cpp
index d54ac2670ae..1e940b1d071 100644
--- a/llvm/lib/CodeGen/StackSlotColoring.cpp
+++ b/llvm/lib/CodeGen/StackSlotColoring.cpp
@@ -12,7 +12,6 @@
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "stackcoloring"
-#include "VirtRegMap.h"
#include "llvm/Function.h"
#include "llvm/Module.h"
#include "llvm/CodeGen/Passes.h"
@@ -92,8 +91,6 @@ namespace {
AU.addRequired<SlotIndexes>();
AU.addPreserved<SlotIndexes>();
AU.addRequired<LiveStacks>();
- AU.addRequired<VirtRegMap>();
- AU.addPreserved<VirtRegMap>();
AU.addRequired<MachineLoopInfo>();
AU.addPreserved<MachineLoopInfo>();
AU.addPreservedID(MachineDominatorsID);
@@ -121,7 +118,6 @@ INITIALIZE_PASS_BEGIN(StackSlotColoring, "stack-slot-coloring",
"Stack Slot Coloring", false, false)
INITIALIZE_PASS_DEPENDENCY(SlotIndexes)
INITIALIZE_PASS_DEPENDENCY(LiveStacks)
-INITIALIZE_PASS_DEPENDENCY(VirtRegMap)
INITIALIZE_PASS_DEPENDENCY(MachineLoopInfo)
INITIALIZE_PASS_END(StackSlotColoring, "stack-slot-coloring",
"Stack Slot Coloring", false, false)
OpenPOWER on IntegriCloud