This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 452b6b2 [LoopInterchange] Improve debug output. NFC. new eadc14f [codeview] Add new directives to record inlined call site line info
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/MC/MCCodeView.h | 83 ++++++++++- include/llvm/MC/MCFragment.h | 5 +- include/llvm/MC/MCObjectStreamer.h | 11 +- include/llvm/MC/MCStreamer.h | 20 ++- lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 30 ++-- lib/MC/MCAsmStreamer.cpp | 56 +++++--- lib/MC/MCCodeView.cpp | 152 ++++++++++++++------ lib/MC/MCObjectStreamer.cpp | 12 +- lib/MC/MCParser/AsmParser.cpp | 169 ++++++++++++++++------ lib/MC/MCStreamer.cpp | 46 +++++- test/DebugInfo/COFF/inlining-header.ll | 7 +- test/DebugInfo/COFF/inlining-levels.ll | 4 +- test/DebugInfo/COFF/inlining.ll | 10 +- test/DebugInfo/COFF/local-variables.ll | 3 + test/MC/COFF/cv-def-range.s | 1 + test/MC/COFF/cv-empty-linetable.s | 1 + test/MC/COFF/cv-errors.s | 56 ++++++++ test/MC/COFF/cv-inline-linetable-infloop.s | 3 + test/MC/COFF/cv-inline-linetable-unlikely.s | 191 +++++++++++++++++++++++++ test/MC/COFF/cv-inline-linetable-unreachable.s | 2 + test/MC/COFF/cv-inline-linetable.s | 27 ++-- test/MC/COFF/cv-loc-cross-section.s | 26 ++++ test/MC/COFF/cv-loc.s | 2 + 23 files changed, 741 insertions(+), 176 deletions(-) create mode 100644 test/MC/COFF/cv-errors.s create mode 100644 test/MC/COFF/cv-inline-linetable-unlikely.s create mode 100644 test/MC/COFF/cv-loc-cross-section.s