diff options
author | Alexandros Lamprineas <alexandros.lamprineas@arm.com> | 2018-09-11 22:10:57 +0000 |
---|---|---|
committer | Alexandros Lamprineas <alexandros.lamprineas@arm.com> | 2018-09-11 22:10:57 +0000 |
commit | fe0512d575c4c599cdc8b2faab493a9fdda4dbfb (patch) | |
tree | 577a59b6ae34725552a1bed43240cccbeee5e325 /llvm/lib/Passes/PassBuilder.cpp | |
parent | 4a17780291f47119defcf5a320d727190fd2a6e6 (diff) | |
download | bcm5719-llvm-fe0512d575c4c599cdc8b2faab493a9fdda4dbfb.tar.gz bcm5719-llvm-fe0512d575c4c599cdc8b2faab493a9fdda4dbfb.zip |
Revert "[GVNHoist] Re-enable GVNHoist by default"
This reverts rL341954.
The builder `sanitizer-x86_64-linux-bootstrap-ubsan` has been
failing with timeouts at stage2 clang/ubsan:
[3065/3073] Linking CXX executable bin/lld
command timed out: 1200 seconds without output running python
../sanitizer_buildbot/sanitizers/buildbot_selector.py,
attempting to kill
llvm-svn: 342001
Diffstat (limited to 'llvm/lib/Passes/PassBuilder.cpp')
-rw-r--r-- | llvm/lib/Passes/PassBuilder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Passes/PassBuilder.cpp b/llvm/lib/Passes/PassBuilder.cpp index 6d719d2a311..d7b9dfca34a 100644 --- a/llvm/lib/Passes/PassBuilder.cpp +++ b/llvm/lib/Passes/PassBuilder.cpp @@ -175,8 +175,8 @@ static cl::opt<bool> EnableEarlyCSEMemSSA( cl::desc("Enable the EarlyCSE w/ MemorySSA pass for the new PM (default = on)")); static cl::opt<bool> EnableGVNHoist( - "enable-npm-gvn-hoist", cl::init(true), cl::Hidden, - cl::desc("Enable the GVN hoisting pass for the new PM (default = on)")); + "enable-npm-gvn-hoist", cl::init(false), cl::Hidden, + cl::desc("Enable the GVN hoisting pass for the new PM (default = off)")); static cl::opt<bool> EnableGVNSink( "enable-npm-gvn-sink", cl::init(false), cl::Hidden, |