summaryrefslogtreecommitdiff
path: root/lib/CodeGen/Passes.cpp
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-02-08 21:22:57 +0000
committerAndrew Trick <atrick@apple.com>2012-02-08 21:22:57 +0000
commit32986572bfe5a30c500d03b8d55174720f08f0bf (patch)
tree1d5437f1a6e17bc43c0c0d534d34a73a0c5365f0 /lib/CodeGen/Passes.cpp
parentc7d081b5946b9ff9f7400d5b41f36cad3fc317aa (diff)
downloadllvm-32986572bfe5a30c500d03b8d55174720f08f0bf.tar.gz
llvm-32986572bfe5a30c500d03b8d55174720f08f0bf.tar.bz2
llvm-32986572bfe5a30c500d03b8d55174720f08f0bf.tar.xz
Move pass configuration out of pass constructors: StackSlotColoring.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150097 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/Passes.cpp')
-rw-r--r--lib/CodeGen/Passes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/Passes.cpp b/lib/CodeGen/Passes.cpp
index 877b4bf9ce..01662743af 100644
--- a/lib/CodeGen/Passes.cpp
+++ b/lib/CodeGen/Passes.cpp
@@ -240,7 +240,7 @@ void TargetPassConfig::addMachinePasses() {
// FIXME: Re-enable coloring with register when it's capable of adding
// kill markers.
if (!DisableSSC)
- PM.add(createStackSlotColoringPass(false));
+ PM.add(createStackSlotColoringPass());
// Run post-ra machine LICM to hoist reloads / remats.
if (!DisablePostRAMachineLICM)