summaryrefslogtreecommitdiff
path: root/lib/CodeGen/Passes.cpp
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-02-08 21:23:03 +0000
committerAndrew Trick <atrick@apple.com>2012-02-08 21:23:03 +0000
commit9d41bd5c78b99750d820e01bcd4a4e479b713d4c (patch)
treee55b6338a6cf3b62e035e6dafd95789a4f139d13 /lib/CodeGen/Passes.cpp
parent9f17cf625dc8be1e92cd2755e2d118ce38fc7268 (diff)
downloadllvm-9d41bd5c78b99750d820e01bcd4a4e479b713d4c.tar.gz
llvm-9d41bd5c78b99750d820e01bcd4a4e479b713d4c.tar.bz2
llvm-9d41bd5c78b99750d820e01bcd4a4e479b713d4c.tar.xz
Move pass configuration out of pass constructors: MachineLICM.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150099 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 01662743af..354fedbef9 100644
--- a/lib/CodeGen/Passes.cpp
+++ b/lib/CodeGen/Passes.cpp
@@ -244,7 +244,7 @@ void TargetPassConfig::addMachinePasses() {
// Run post-ra machine LICM to hoist reloads / remats.
if (!DisablePostRAMachineLICM)
- PM.add(createMachineLICMPass(false));
+ PM.add(createMachineLICMPass());
printAndVerify("After StackSlotColoring and postra Machine LICM");
}