This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from e2b0a2aafa1 Try to fix more bots after r322391 new a57b9dfaee5 [JumpThreading] Preservation of DT and LVI across the pass
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/IR/Dominators.h | 84 +++++ include/llvm/Transforms/Scalar/JumpThreading.h | 6 +- include/llvm/Transforms/Utils/BasicBlockUtils.h | 3 +- include/llvm/Transforms/Utils/Local.h | 20 +- lib/IR/Dominators.cpp | 188 +++++++++++ .../Scalar/CorrelatedValuePropagation.cpp | 2 + lib/Transforms/Scalar/JumpThreading.cpp | 174 ++++++++--- lib/Transforms/Utils/BasicBlockUtils.cpp | 18 +- lib/Transforms/Utils/Local.cpp | 209 ++++++++++--- .../LazyValueAnalysis/lvi-after-jumpthreading.ll | 3 + test/Transforms/JumpThreading/ddt-crash.ll | 265 ++++++++++++++++ test/Transforms/JumpThreading/ddt-crash2.ll | 40 +++ test/Transforms/JumpThreading/lvi-tristate.ll | 50 +++ unittests/IR/CMakeLists.txt | 1 + unittests/IR/DeferredDominanceTest.cpp | 344 +++++++++++++++++++++ 15 files changed, 1308 insertions(+), 99 deletions(-) create mode 100644 test/Transforms/JumpThreading/ddt-crash.ll create mode 100644 test/Transforms/JumpThreading/ddt-crash2.ll create mode 100644 test/Transforms/JumpThreading/lvi-tristate.ll create mode 100644 unittests/IR/DeferredDominanceTest.cpp