[llvm] r328555 - Disable [MachineLICM] Add functions to MachineLICM to hoist invariant stores
Zaara Syeda via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 26 10:22:33 PDT 2018
Author: syzaara
Date: Mon Mar 26 10:22:33 2018
New Revision: 328555
URL: http://llvm.org/viewvc/llvm-project?rev=328555&view=rev
Log:
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.
Modified:
llvm/trunk/lib/CodeGen/MachineLICM.cpp
Modified: llvm/trunk/lib/CodeGen/MachineLICM.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineLICM.cpp?rev=328555&r1=328554&r2=328555&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/MachineLICM.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineLICM.cpp Mon Mar 26 10:22:33 2018
@@ -74,7 +74,7 @@ SinkInstsToAvoidSpills("sink-insts-to-av
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");
More information about the llvm-commits
mailing list