This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b3a26d8ca65 [AArch64] Improve code generation of vector build new f733002f9d6 [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 | 205 ++++++++++++---- .../LazyValueAnalysis/lvi-after-jumpthreading.ll | 3 + test/Transforms/JumpThreading/ddt-crash.ll | 265 +++++++++++++++++++++ test/Transforms/JumpThreading/lvi-tristate.ll | 50 ++++ 12 files changed, 919 insertions(+), 99 deletions(-) create mode 100644 test/Transforms/JumpThreading/ddt-crash.ll create mode 100644 test/Transforms/JumpThreading/lvi-tristate.ll