This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 976af3f5de3 [CodeExtractor] Add debug locations for new call and branch [...] new 2cac108e975 [Debugify] Add a pass to test debug info preservation new 0375b237481 Generalize llvm::replaceDbgDeclare and actually support the [...]
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: docs/ReleaseNotes.rst | 5 + include/llvm/IR/DebugInfoMetadata.h | 5 +- include/llvm/Transforms/Utils/Local.h | 24 +-- lib/CodeGen/SafeStack.cpp | 8 +- lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 + lib/IR/DebugInfoMetadata.cpp | 11 +- lib/Target/X86/X86OptimizeLEAs.cpp | 1 + .../Instrumentation/AddressSanitizer.cpp | 3 +- lib/Transforms/Utils/InlineFunction.cpp | 3 +- lib/Transforms/Utils/Local.cpp | 10 +- test/DebugInfo/debugify.ll | 65 +++++++ test/Transforms/Mem2Reg/PromoteMemToRegister.ll | 5 +- tools/opt/CMakeLists.txt | 1 + tools/opt/Debugify.cpp | 212 +++++++++++++++++++++ unittests/IR/MetadataTest.cpp | 12 ++ unittests/Transforms/Utils/Local.cpp | 3 +- 16 files changed, 342 insertions(+), 27 deletions(-) create mode 100644 test/DebugInfo/debugify.ll create mode 100644 tools/opt/Debugify.cpp