summaryrefslogtreecommitdiffstats
path: root/llvm/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
commitc40815de62286ee6e324cb0a342db85e0a5a3c23 (patch)
treec1d9b24ba1472feec96bf2603455f982214333fe /llvm/lib/CodeGen/Passes.cpp
parent5209c739cd00e89e8bf323fd54adbf168500277b (diff)
downloadbcm5719-llvm-c40815de62286ee6e324cb0a342db85e0a5a3c23.tar.gz
bcm5719-llvm-c40815de62286ee6e324cb0a342db85e0a5a3c23.zip
Move pass configuration out of pass constructors: MachineLICM.
llvm-svn: 150099
Diffstat (limited to 'llvm/lib/CodeGen/Passes.cpp')
-rw-r--r--llvm/lib/CodeGen/Passes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/Passes.cpp b/llvm/lib/CodeGen/Passes.cpp
index 01662743afe..354fedbef9a 100644
--- a/llvm/lib/CodeGen/Passes.cpp
+++ b/llvm/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");
}
OpenPOWER on IntegriCloud