This is an automated email from the git hooks/post-receive script.
"tcwg-buildslave pushed a change to branch linaro-local/ci/llvm-kernel-aarch64-tested in repository toolchain/llvm/llvm.
from 41bee7d4780 [InstrProf] Use atomic profile counter updates for TSan adds 3964940ceb1 [InstCombine] add reflection fold for tan(-x) adds e90d44039a6 [x86/MIR] Implement support for pre- and post-instruction s [...] adds 5e5a9f7ee34 [WebAssembly] CFG stackify support for exception handling adds 1466a5a3703 DebugInfo: Remove command line (& target-based) disabling o [...] adds 3c76da17f7b [WebAssembly] Modify LateEHPrepare one-line description (NFC) adds bc3032830f2 [ADT] Replace a member initializer of a union with an expli [...] adds 907fb9abe88 [GISel]: Add Opcodes for a few LLVM Intrinsics adds 7de28914d7d [Support] Add a public API to allow clearing all (static) t [...] adds d91f0329ac6 [llvm-mc-assemble-fuzzer] Update API - Pass MCObjectWriter [...] adds 7debc334e64 Revert r339977: [GISel]: Add Opcodes for a few LLVM Intrinsics adds 6d4546ea14a [NFC] Add tests to ensure that improvement of MustThrow ana [...] adds 18374180e36 [MustExecute] Fix algorithmic bug in isGuaranteedToExecute. [...] adds 5a4ec120f8e [ARM][NFC] ARMCodeGenPrepare: some refactoring and algorith [...] adds 12061ae7173 [MISC]Fix wrong usage of std::equal() Differential Revision [...] adds 3ec6e52a80d [Sparc] Flush register windows for @llvm.returnaddress(1) adds 8d97f0d4be3 Fix "control reaches end of non-void function" -Wreturn-typ [...] adds 2f779737ec6 [Sparc] Get sret arg size from CallLoweringInfo.getArgs() adds 19640950ddf [DAGCombine] Improve (sra (sra x, c1), c2) -> (sra x, (add [...]
No new revisions were added by this update.
Summary of changes: docs/MIRLangRef.rst | 13 +- include/llvm/ADT/PointerSumType.h | 8 +- include/llvm/ADT/STLExtras.h | 33 +- include/llvm/Analysis/MustExecute.h | 6 + include/llvm/CodeGen/MachineInstr.h | 14 +- include/llvm/Support/Timer.h | 14 +- lib/Analysis/MustExecute.cpp | 103 ++-- lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 8 + lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp | 5 +- lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 6 - lib/CodeGen/AsmPrinter/DwarfDebug.h | 6 - lib/CodeGen/MIRParser/MILexer.cpp | 51 ++ lib/CodeGen/MIRParser/MILexer.h | 3 + lib/CodeGen/MIRParser/MIParser.cpp | 67 ++- lib/CodeGen/MIRPrinter.cpp | 18 + lib/CodeGen/MachineInstr.cpp | 92 ++- lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 33 +- lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 2 +- lib/Support/Timer.cpp | 15 +- lib/Target/ARM/ARMCodeGenPrepare.cpp | 118 ++-- lib/Target/Sparc/SparcISelLowering.cpp | 69 +-- lib/Target/Sparc/SparcISelLowering.h | 1 - lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp | 650 +++++++++++++++++---- .../WebAssembly/WebAssemblyLateEHPrepare.cpp | 2 +- lib/Transforms/Scalar/NewGVN.cpp | 8 +- lib/Transforms/Utils/SimplifyLibCalls.cpp | 7 +- test/Analysis/MustExecute/infinite_loops.ll | 25 +- test/Analysis/MustExecute/loop-header.ll | 37 ++ .../X86/instr-symbols-and-mcsymbol-operands.mir | 82 +++ test/CodeGen/SPARC/2011-01-11-FrameAddr.ll | 18 + test/CodeGen/SPARC/cast-sret-func.ll | 17 + test/CodeGen/SPARC/fp128.ll | 10 + test/CodeGen/WebAssembly/cfg-stackify-eh.mir | 322 ++++++++++ test/CodeGen/WebAssembly/exception.ll | 4 + test/CodeGen/X86/combine-sra.ll | 13 +- test/CodeGen/X86/instr-symbols.mir | 74 +++ test/DebugInfo/NVPTX/cu-range-hole.ll | 2 +- test/DebugInfo/NVPTX/dbg-declare-alloca.ll | 2 +- test/DebugInfo/NVPTX/debug-info.ll | 2 +- test/DebugInfo/NVPTX/debug-loc-offset.ll | 4 +- test/DebugInfo/X86/no-public-sections.ll | 31 - test/DebugInfo/X86/sections_as_references.ll | 6 +- test/Transforms/InstCombine/cos-1.ll | 12 +- test/Transforms/LICM/infinite_loops.ll | 96 ++- .../llvm-mc-assemble-fuzzer.cpp | 7 +- unittests/ADT/STLExtrasTest.cpp | 15 + 46 files changed, 1719 insertions(+), 412 deletions(-) create mode 100644 test/CodeGen/MIR/X86/instr-symbols-and-mcsymbol-operands.mir create mode 100644 test/CodeGen/SPARC/cast-sret-func.ll create mode 100644 test/CodeGen/WebAssembly/cfg-stackify-eh.mir create mode 100644 test/CodeGen/X86/instr-symbols.mir delete mode 100644 test/DebugInfo/X86/no-public-sections.ll