This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 20d1cb14e87 [ARM] Fix some Clang-tidy modernize-use-using and Include W [...] new 5c9ae96b653 [docs] llvm-cov: Document -show-instantiation-summary new 0a17ddc991c [IR] Add llvm.dbg.addr, a control-dependent version of llvm [...] new 04fcc66bc14 Commit local changes that missed llvm.dbg.addr
The 3 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: docs/CommandGuide/llvm-cov.rst | 4 + docs/SourceLevelDebugging.rst | 62 +++++++--- include/llvm/IR/IntrinsicInst.h | 34 +++++- include/llvm/IR/Intrinsics.td | 8 +- include/llvm/Transforms/Utils/Local.h | 22 ++-- lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 48 +++++--- lib/IR/DIBuilder.cpp | 14 ++- lib/IR/Verifier.cpp | 2 + .../InstCombine/InstructionCombining.cpp | 13 ++- lib/Transforms/Scalar/SROA.cpp | 19 +-- lib/Transforms/Utils/Local.cpp | 91 ++++++++------- lib/Transforms/Utils/PromoteMemoryToRegister.cpp | 44 +++---- test/DebugInfo/X86/dbg-addr-dse.ll | 100 ++++++++++++++++ .../X86/{dbg-declare-alloca.ll => dbg-addr.ll} | 31 ++--- test/Transforms/Mem2Reg/dbg-addr-inline-dse.ll | 94 +++++++++++++++ test/Transforms/Mem2Reg/dbg-addr.ll | 91 +++++++++++++++ test/Transforms/SROA/dbg-addr-diamond.ll | 127 +++++++++++++++++++++ 17 files changed, 663 insertions(+), 141 deletions(-) create mode 100644 test/DebugInfo/X86/dbg-addr-dse.ll copy test/DebugInfo/X86/{dbg-declare-alloca.ll => dbg-addr.ll} (61%) create mode 100644 test/Transforms/Mem2Reg/dbg-addr-inline-dse.ll create mode 100644 test/Transforms/Mem2Reg/dbg-addr.ll create mode 100644 test/Transforms/SROA/dbg-addr-diamond.ll