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_apm/llvm-release-aarch64-spec2k6-Oz in repository toolchain/ci/llvm-project.
from 33f7aa65f5d7 [DSE] Fix invalid removal of store instruction adds 0f915e755eae [RegAllocFast] Fix nondeterminism in debuginfo generation adds 35df3f98639e [DIArgList] Re-unique after changing operands to fix non-d [...] adds 12aaa8553f82 [InstCombine] Remove attributes after hoisting free above [...] adds 1ac6bb3c4dd4 [Clang][CFG] check children statements of asm goto adds bfb1bd1b9906 [Clang][Sema] Avoid crashing for va_arg expressions with b [...] adds eecd0f055baa Have lit preserve SOURCE_DATE_EPOCH adds eaeb7dcf3249 ARM: make FastISel & GISel pass -1 to ADJCALLSTACKUP to si [...] adds 52a400d8e4c4 [InlineCost] model calls to llvm.is.constant* more carefully adds 9d9efb1f67ff [lld][CMake] Add LLD_DEFAULT_NOSTART_STOP_GC adds b9a243d1cac2 [Coroutines] Enhance symmetric transfer for constant CmpInst
No new revisions were added by this update.
Summary of changes: clang/lib/Analysis/CFG.cpp | 2 +- clang/lib/Analysis/UninitializedValues.cpp | 9 +- clang/lib/Sema/SemaExpr.cpp | 2 +- clang/test/Analysis/asm-goto.cpp | 29 +++++-- clang/test/Analysis/uninit-asm-goto.cpp | 47 ++++++++--- clang/test/Sema/array-bounds-ptr-arith.c | 12 +++ clang/test/SemaCXX/varargs.cpp | 2 + lld/CMakeLists.txt | 9 ++ lld/ELF/Driver.cpp | 9 ++ lld/test/CMakeLists.txt | 1 + lld/test/ELF/gc-sections-metadata-startstop.s | 1 + lld/test/ELF/gc-sections-startstop-hint.s | 1 + lld/test/ELF/gc-sections-startstop.s | 1 + lld/test/lit.cfg.py | 3 + lld/test/lit.site.cfg.py.in | 1 + llvm/include/llvm/IR/Metadata.h | 1 + llvm/lib/Analysis/InlineCost.cpp | 24 ++++++ llvm/lib/CodeGen/RegAllocFast.cpp | 3 +- llvm/lib/IR/DebugInfoMetadata.cpp | 10 +++ llvm/lib/IR/LLVMContextImpl.cpp | 9 +- llvm/lib/Target/ARM/ARMCallLowering.cpp | 2 +- llvm/lib/Target/ARM/ARMFastISel.cpp | 2 +- llvm/lib/Transforms/Coroutines/CoroSplit.cpp | 98 ++++++++++++++-------- .../InstCombine/InstructionCombining.cpp | 20 +++++ .../CodeGen/ARM/GlobalISel/arm-call-lowering.ll | 16 ++-- .../CodeGen/ARM/GlobalISel/arm-param-lowering.ll | 26 +++--- .../GlobalISel/irtranslator-varargs-lowering.ll | 8 +- llvm/test/CodeGen/ARM/fast-call-frame-restore.ll | 19 +++++ .../Transforms/Coroutines/coro-split-musttail4.ll | 65 ++++++++++++++ .../Inline/call-intrinsic-is-constant.ll | 39 +++++++++ llvm/test/Transforms/InstCombine/malloc-free.ll | 79 +++++++++++++++++ llvm/utils/lit/lit/TestingConfig.py | 2 +- 32 files changed, 461 insertions(+), 91 deletions(-) create mode 100644 llvm/test/CodeGen/ARM/fast-call-frame-restore.ll create mode 100644 llvm/test/Transforms/Coroutines/coro-split-musttail4.ll create mode 100644 llvm/test/Transforms/Inline/call-intrinsic-is-constant.ll create mode 100644 llvm/test/Transforms/InstCombine/malloc-free.ll