diff options
author | Zaara Syeda <syzaara@ca.ibm.com> | 2018-03-26 17:22:33 +0000 |
---|---|---|
committer | Zaara Syeda <syzaara@ca.ibm.com> | 2018-03-26 17:22:33 +0000 |
commit | 17e4eeaa8bfdd8255a0950c8401e923b577da9cf (patch) | |
tree | 6910d5736f1c61b6c91decf1694c6dbf9cdc15e7 /llvm/lib | |
parent | 3ca233414b8273f57d1512eddce16115f85b0db7 (diff) | |
download | bcm5719-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.cpp | 2 |
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"); |