diff options
author | Chad Rosier <mcrosier@codeaurora.org> | 2015-12-10 19:23:02 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@codeaurora.org> | 2015-12-10 19:23:02 +0000 |
commit | 843c7b43090dab4879e6a39a94ccad17c835a545 (patch) | |
tree | 1bc2b630296bbe3e833dae0818889b30700fc31f /llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp | |
parent | e8c18a1bd16057aa5e9658ff7f32372680887aec (diff) | |
download | bcm5719-llvm-843c7b43090dab4879e6a39a94ccad17c835a545.tar.gz bcm5719-llvm-843c7b43090dab4879e6a39a94ccad17c835a545.zip |
[DSE] Disable non-local DSE to see if the bots go green.
I see a few bots timing out, so I'm speculatively disabling r255247.
llvm-svn: 255286
Diffstat (limited to 'llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp b/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp index ba7e98f17b8..e6996ab97a8 100644 --- a/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp +++ b/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp @@ -43,7 +43,7 @@ STATISTIC(NumFastStores, "Number of stores deleted"); STATISTIC(NumFastOther , "Number of other instrs removed"); STATISTIC(NumNonLocalStores, "Number of non-local stores deleted"); -static cl::opt<bool> EnableNonLocalDSE("enable-nonlocal-dse", cl::init(true)); +static cl::opt<bool> EnableNonLocalDSE("enable-nonlocal-dse", cl::init(false)); /// MaxNonLocalAttempts is an arbitrary threshold that provides /// an early opportunitiy for bail out to control compile time. |