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-aarch64-stable-allnoconfig in repository toolchain/ci/llvm-project.
from 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 [...] adds 533d98bdced [X86] Cast to __v4hi instead of __m64 in the implementation [...] adds 2804f355820 Fix an unused variable warning adds 9fbd4ab395f [Concepts] Do not check constraints if not all template arg [...] adds 6f692404a30 [Concepts] Add missing TPA commit to requires expression parsing adds b3cf70427eb [CodeGen] Fix the computation of the alignment of split stores. new 808f8a632f8 Fix type-dependency of bitfields in templates new e1b73356879 Fix a reentrance bug with deserializing ObjC type parameters.
The 2 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/AST/Expr.cpp | 5 + 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/lib/Serialization/ASTReaderDecl.cpp | 2 +- clang/test/CXX/temp/temp.deduct/p5.cpp | 6 ++ clang/test/Modules/Inputs/module.map | 4 + clang/test/Modules/Inputs/objc_type_param.h | 13 +++ clang/test/Modules/objc-type-param.m | 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/test/SemaTemplate/enum-argument.cpp | 3 +- .../SemaTemplate/value-dependent-bitfield-cond.cpp | 13 +++ 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/Target/ARM/ARMConstantIslandPass.cpp | 2 +- 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/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 ++++++++++++++ 50 files changed, 492 insertions(+), 256 deletions(-) create mode 100644 clang/test/CXX/temp/temp.deduct/p5.cpp create mode 100644 clang/test/Modules/Inputs/objc_type_param.h create mode 100644 clang/test/Modules/objc-type-param.m create mode 100644 clang/test/SemaOpenCLCXX/address-space-castoperators.cl create mode 100644 clang/test/SemaTemplate/value-dependent-bitfield-cond.cpp 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