This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a3c50671a5e [InstCombine] Regenerate + add icmp with undef tests new 6ce55cd841c [DebugInfo] Introduce DW_OP_LLVM_convert
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: docs/LangRef.rst | 4 + include/llvm/BinaryFormat/Dwarf.h | 3 +- include/llvm/CodeGen/AsmPrinter.h | 2 +- include/llvm/CodeGen/DIE.h | 48 +++++- include/llvm/CodeGen/DIEValue.def | 1 + include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h | 2 +- include/llvm/DebugInfo/DWARF/DWARFExpression.h | 2 + include/llvm/MC/MCStreamer.h | 2 +- lib/AsmParser/LLParser.cpp | 9 ++ lib/BinaryFormat/Dwarf.cpp | 3 + lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp | 4 +- lib/CodeGen/AsmPrinter/ByteStreamer.h | 10 +- lib/CodeGen/AsmPrinter/DIE.cpp | 17 +++ lib/CodeGen/AsmPrinter/DIEHash.cpp | 3 +- lib/CodeGen/AsmPrinter/DebugLocEntry.h | 6 +- lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp | 25 ++++ lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | 14 ++ lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 81 ++++++++-- lib/CodeGen/AsmPrinter/DwarfDebug.h | 6 +- lib/CodeGen/AsmPrinter/DwarfExpression.cpp | 61 ++++++++ lib/CodeGen/AsmPrinter/DwarfExpression.h | 21 ++- lib/CodeGen/AsmPrinter/DwarfFile.h | 2 +- lib/CodeGen/AsmPrinter/DwarfUnit.cpp | 15 +- lib/CodeGen/AsmPrinter/LLVMBuild.txt | 2 +- lib/DebugInfo/DWARF/DWARFDebugLoc.cpp | 5 +- lib/DebugInfo/DWARF/DWARFDie.cpp | 2 +- lib/DebugInfo/DWARF/DWARFExpression.cpp | 2 + lib/IR/AsmWriter.cpp | 9 +- lib/IR/DebugInfoMetadata.cpp | 2 + lib/MC/MCStreamer.cpp | 4 +- lib/Transforms/Utils/Local.cpp | 19 +-- test/Assembler/diexpression.ll | 6 +- test/DebugInfo/Generic/convert-debugloc.ll | 164 +++++++++++++++++++++ test/DebugInfo/Generic/convert-inlined.ll | 87 +++++++++++ test/DebugInfo/Generic/convert-linked.ll | 72 +++++++++ .../cast-set-preserve-signed-dbg-val.ll | 2 +- unittests/Transforms/Utils/LocalTest.cpp | 40 ++--- 37 files changed, 672 insertions(+), 85 deletions(-) create mode 100644 test/DebugInfo/Generic/convert-debugloc.ll create mode 100644 test/DebugInfo/Generic/convert-inlined.ll create mode 100644 test/DebugInfo/Generic/convert-linked.ll