summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2011-10-26 01:26:57 +0000
committerEvan Cheng <evan.cheng@apple.com>2011-10-26 01:26:57 +0000
commit7313337c8592cfc879cb038657b9fdf61d13d474 (patch)
tree2ac7752e483a0daece45af421d895bfefeec0110 /llvm
parent043c9d3f7ad77516bb2c78307c269922fd0bfc5f (diff)
downloadbcm5719-llvm-7313337c8592cfc879cb038657b9fdf61d13d474.tar.gz
bcm5719-llvm-7313337c8592cfc879cb038657b9fdf61d13d474.zip
Disable LICM speculation in high register pressure situation again now that Devang has fixed other issues.
llvm-svn: 143003
Diffstat (limited to 'llvm')
-rw-r--r--llvm/lib/CodeGen/MachineLICM.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineLICM.cpp b/llvm/lib/CodeGen/MachineLICM.cpp
index 964e9712079..e756dedff47 100644
--- a/llvm/lib/CodeGen/MachineLICM.cpp
+++ b/llvm/lib/CodeGen/MachineLICM.cpp
@@ -45,7 +45,7 @@ using namespace llvm;
static cl::opt<bool>
AvoidSpeculation("avoid-speculation",
cl::desc("MachineLICM should avoid speculation"),
- cl::init(false), cl::Hidden);
+ cl::init(true), cl::Hidden);
STATISTIC(NumHoisted,
"Number of machine instructions hoisted out of loops");
OpenPOWER on IntegriCloud