[DSE] Disable non-local DSE to see if the bots go green.
[oota-llvm.git] / lib / Transforms / Scalar / DeadStoreElimination.cpp
index ba7e98f17b8508501c4c3130a0fc200a2bc98ead..e6996ab97a8caad415372986e5c52606e477ac42 100644 (file)
@@ -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.