This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/llvm-release-arm-mainline-allnoconfig in repository toolchain/ci/llvm-project.
from aeba7ba9f3d Add SystemZ release notes adds fd04cb43e1d [Clang][Driver] After default -fintegrated-cc1, make llvm:: [...] adds 3c94b278012 [SystemZ] Bugfix in emitSelect() adds d8a6deab7a8 Fix MSVC build with C++ EH enabled adds b33830aea54 [OpenCL] Restrict addr space conversions in nested pointers adds 7a136d2768e [clang-tidy] Added check to disable bugprone-infinite-loop [...] adds c1701728b93 [DebugInfo] Re-instate LiveDebugVariables scope trimming adds 04d7337d69f Revert "[DebugInfo][DAG] Distinguish different kinds of loc [...] adds 4eb45a05a78 Revert "[DebugInfo] Remove some users of DBG_VALUEs IsIndir [...] new 533d98bdced [X86] Cast to __v4hi instead of __m64 in the implementation [...] new 2804f355820 Fix an unused variable warning new 9fbd4ab395f [Concepts] Do not check constraints if not all template arg [...] new 6f692404a30 [Concepts] Add missing TPA commit to requires expression parsing new b3cf70427eb [CodeGen] Fix the computation of the alignment of split stores.
The 5 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: .../clang-tidy/bugprone/InfiniteLoopCheck.cpp | 10 ++ .../clang-tidy/checkers/bugprone-infinite-loop.cpp | 9 ++ clang/include/clang/Basic/DiagnosticSemaKinds.td | 4 + clang/lib/Headers/xmmintrin.h | 4 +- clang/lib/Parse/ParseExprCXX.cpp | 1 + clang/lib/Sema/SemaCast.cpp | 18 ++++ clang/lib/Sema/SemaOverload.cpp | 24 +++-- clang/lib/Sema/SemaTemplateDeduction.cpp | 15 +-- clang/test/CXX/temp/temp.deduct/p5.cpp | 6 ++ clang/test/Driver/crash-report.c | 8 ++ .../SemaOpenCL/address-spaces-conversions-cl2.0.cl | 26 ++++- clang/test/SemaOpenCL/address-spaces.cl | 4 +- .../SemaOpenCLCXX/address-space-castoperators.cl | 12 +++ .../test/SemaOpenCLCXX/address-space-deduction.cl | 2 +- .../test/SemaOpenCLCXX/address-space-references.cl | 13 +++ clang/tools/driver/cc1_main.cpp | 3 +- clang/tools/driver/cc1as_main.cpp | 3 +- llvm/include/llvm/Support/CrashRecoveryContext.h | 5 + llvm/include/llvm/Support/Process.h | 6 ++ llvm/lib/CodeGen/CodeGenPrepare.cpp | 12 ++- llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp | 2 +- llvm/lib/CodeGen/GlobalISel/MachineIRBuilder.cpp | 16 +-- llvm/lib/CodeGen/LiveDebugVariables.cpp | 77 ++++++++++---- llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | 12 +-- llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp | 17 ++-- .../CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 28 ++---- llvm/lib/Support/CrashRecoveryContext.cpp | 32 ++++-- llvm/lib/Support/ErrorHandling.cpp | 3 +- llvm/lib/Support/Process.cpp | 10 +- llvm/lib/Target/ARM/ARMConstantIslandPass.cpp | 2 +- llvm/lib/Target/SystemZ/SystemZISelLowering.cpp | 5 +- llvm/test/CodeGen/AArch64/GlobalISel/debug-cpp.ll | 2 +- .../test/CodeGen/AArch64/GlobalISel/debug-insts.ll | 8 +- llvm/test/CodeGen/ARM/debug-info-arg.ll | 2 +- llvm/test/CodeGen/PowerPC/debuginfo-stackarg.ll | 2 +- llvm/test/CodeGen/SystemZ/multiselect-02.mir | 43 ++++++++ llvm/test/CodeGen/X86/dbg-value-func-arg.ll | 12 +-- llvm/test/DebugInfo/ARM/PR16736.ll | 2 +- llvm/test/DebugInfo/ARM/float-stack-arg.ll | 2 +- llvm/test/DebugInfo/COFF/pieces.ll | 6 +- llvm/test/DebugInfo/X86/dbg-addr-dse.ll | 10 +- llvm/test/DebugInfo/X86/dbg-addr.ll | 2 +- llvm/test/DebugInfo/X86/live-debug-variables.ll | 2 +- llvm/test/DebugInfo/X86/live-debug-vars-dse.mir | 16 ++- llvm/test/DebugInfo/X86/op_deref.ll | 14 +-- llvm/test/DebugInfo/X86/parameters.ll | 10 +- llvm/test/DebugInfo/X86/safestack-byval.ll | 4 +- llvm/test/DebugInfo/X86/spill-indirect-nrvo.ll | 2 +- llvm/test/DebugInfo/X86/spill-nontrivial-param.ll | 2 +- llvm/test/DebugInfo/X86/stack-arg-deref.ll | 85 ---------------- llvm/test/DebugInfo/X86/vla.ll | 18 +--- .../PowerPC/split-store-alignment.ll | 111 +++++++++++++++++++++ .../CodeGenPrepare/X86/split-store-alignment.ll | 74 ++++++++++++++ 53 files changed, 552 insertions(+), 266 deletions(-) create mode 100644 clang/test/CXX/temp/temp.deduct/p5.cpp create mode 100644 clang/test/SemaOpenCLCXX/address-space-castoperators.cl create mode 100644 llvm/test/CodeGen/SystemZ/multiselect-02.mir delete mode 100644 llvm/test/DebugInfo/X86/stack-arg-deref.ll create mode 100644 llvm/test/Transforms/CodeGenPrepare/PowerPC/split-store-alignment.ll create mode 100644 llvm/test/Transforms/CodeGenPrepare/X86/split-store-alignment.ll