This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 636aebaef4a NFC, Avoid a warning on pointer casting in PassPlugin.cpp new 7831bed7001 [SelectionDAG] Improve selection of DBG_VALUE using a PHI n [...] new b0beac8bcff [BranchFolding] Salvage DBG_VALUE instructions from empty blocks
The 2 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/CodeGen/SelectionDAG.h | 5 + lib/CodeGen/BranchFolding.cpp | 46 ++++++ lib/CodeGen/SelectionDAG/InstrEmitter.cpp | 2 + lib/CodeGen/SelectionDAG/SDNodeDbgValue.h | 15 +- lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 11 ++ lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 13 ++ test/DebugInfo/COFF/pieces.ll | 9 +- test/DebugInfo/X86/PR37234.ll | 125 ++++++++++++++++ test/DebugInfo/X86/sdag-dbgvalue-phi-use-1.ll | 178 +++++++++++++++++++++++ test/DebugInfo/X86/sdag-dbgvalue-phi-use-2.ll | 171 ++++++++++++++++++++++ 10 files changed, 571 insertions(+), 4 deletions(-) create mode 100644 test/DebugInfo/X86/PR37234.ll create mode 100644 test/DebugInfo/X86/sdag-dbgvalue-phi-use-1.ll create mode 100644 test/DebugInfo/X86/sdag-dbgvalue-phi-use-2.ll