This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk/llvm-master-aarch64-spec2k6-Os in repository toolchain/ci/llvm-project.
from 9ea0e473f0b Mark 'front()' and 'back()' as noexcept for array/deque/str [...] adds 802fe81df39 [WebAssembly] Change wasm.throw's first argument to an immediate adds 9203d218388 [WebAssembly] Add immarg attribute to intrinsics adds 34dc1f2483c [WebAssembly] Rename methods according to instruction name [...] adds 1045b415101 [WebAssembly] Improve readability of irreducibility tests adds c60bc94afcf [WebAssembly] Small improvements in FixIrreducibleControlFl [...] adds f170dff3c19 Refactor cast<>'s in if conditionals, which can only assert [...] adds cd8a940b37b [DebugInfo] Introduce DW_OP_LLVM_convert
No new revisions were added by this update.
Summary of changes: clang/include/clang/Basic/BuiltinsWebAssembly.def | 2 +- clang/lib/AST/ASTImporter.cpp | 53 ++++--- clang/lib/AST/DeclBase.cpp | 10 +- clang/lib/CodeGen/CGExprConstant.cpp | 39 ++--- clang/lib/CodeGen/MicrosoftCXXABI.cpp | 2 +- clang/lib/Sema/SemaOpenMP.cpp | 2 +- clang/test/CodeGen/builtins-wasm.c | 8 +- llvm/docs/LangRef.rst | 4 + llvm/include/llvm/BinaryFormat/Dwarf.h | 3 +- llvm/include/llvm/CodeGen/AsmPrinter.h | 2 +- llvm/include/llvm/CodeGen/DIE.h | 48 +++++- llvm/include/llvm/CodeGen/DIEValue.def | 1 + llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h | 2 +- .../include/llvm/DebugInfo/DWARF/DWARFExpression.h | 2 + llvm/include/llvm/IR/IntrinsicsWebAssembly.td | 8 +- llvm/include/llvm/MC/MCStreamer.h | 2 +- llvm/lib/AsmParser/LLParser.cpp | 9 ++ llvm/lib/BinaryFormat/Dwarf.cpp | 3 + llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp | 4 +- llvm/lib/CodeGen/AsmPrinter/ByteStreamer.h | 10 +- llvm/lib/CodeGen/AsmPrinter/DIE.cpp | 17 +++ llvm/lib/CodeGen/AsmPrinter/DIEHash.cpp | 3 +- llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h | 6 +- llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp | 24 +++ llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | 14 ++ llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 81 ++++++++-- llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 6 +- llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp | 61 ++++++++ llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h | 21 ++- llvm/lib/CodeGen/AsmPrinter/DwarfFile.h | 2 +- llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp | 15 +- llvm/lib/CodeGen/AsmPrinter/LLVMBuild.txt | 2 +- llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp | 5 +- llvm/lib/DebugInfo/DWARF/DWARFDie.cpp | 2 +- llvm/lib/DebugInfo/DWARF/DWARFExpression.cpp | 2 + llvm/lib/IR/AsmWriter.cpp | 9 +- llvm/lib/IR/DebugInfoMetadata.cpp | 2 + llvm/lib/MC/MCStreamer.cpp | 4 +- .../WebAssembly/WebAssemblyExplicitLocals.cpp | 14 +- .../WebAssemblyFixIrreducibleControlFlow.cpp | 40 ++--- llvm/lib/Transforms/Utils/Local.cpp | 19 +-- llvm/test/Assembler/diexpression.ll | 6 +- .../WebAssembly/irreducible-cfg-exceptions.ll | 46 +++--- llvm/test/CodeGen/WebAssembly/irreducible-cfg.ll | 58 ++++---- llvm/test/CodeGen/WebAssembly/wasmehprepare.ll | 2 +- llvm/test/DebugInfo/Generic/convert-debugloc.ll | 164 +++++++++++++++++++++ llvm/test/DebugInfo/Generic/convert-inlined.ll | 87 +++++++++++ llvm/test/DebugInfo/Generic/convert-linked.ll | 72 +++++++++ .../cast-set-preserve-signed-dbg-val.ll | 2 +- llvm/unittests/Transforms/Utils/LocalTest.cpp | 40 ++--- 50 files changed, 802 insertions(+), 238 deletions(-) create mode 100644 llvm/test/DebugInfo/Generic/convert-debugloc.ll create mode 100644 llvm/test/DebugInfo/Generic/convert-inlined.ll create mode 100644 llvm/test/DebugInfo/Generic/convert-linked.ll