summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorZaara Syeda <syzaara@ca.ibm.com>2018-03-26 17:22:33 +0000
committerZaara Syeda <syzaara@ca.ibm.com>2018-03-26 17:22:33 +0000
commit17e4eeaa8bfdd8255a0950c8401e923b577da9cf (patch)
tree6910d5736f1c61b6c91decf1694c6dbf9cdc15e7 /llvm/lib
parent3ca233414b8273f57d1512eddce16115f85b0db7 (diff)
downloadbcm5719-llvm-17e4eeaa8bfdd8255a0950c8401e923b577da9cf.tar.gz
bcm5719-llvm-17e4eeaa8bfdd8255a0950c8401e923b577da9cf.zip
Disable [MachineLICM] Add functions to MachineLICM to hoist invariant stores
Disable https://reviews.llvm.org/D40196 with setting option hoist-const-stores to false since failing s390 buildbot. llvm-svn: 328555
Diffstat (limited to 'llvm/lib')
-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 34c5cf571c6..f5b673d89a5 100644
--- a/llvm/lib/CodeGen/MachineLICM.cpp
+++ b/llvm/lib/CodeGen/MachineLICM.cpp
@@ -74,7 +74,7 @@ SinkInstsToAvoidSpills("sink-insts-to-avoid-spills",
static cl::opt<bool>
HoistConstStores("hoist-const-stores",
cl::desc("Hoist invariant stores"),
- cl::init(true), cl::Hidden);
+ cl::init(false), cl::Hidden);
STATISTIC(NumHoisted,
"Number of machine instructions hoisted out of loops");
OpenPOWER on IntegriCloud