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-next-allnoconfig in repository toolchain/ci/llvm-project.
from dbe9c3a82dd [Support] Don't modify the current EH context during stack [...] adds 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 new b33830aea54 [OpenCL] Restrict addr space conversions in nested pointers new 7a136d2768e [clang-tidy] Added check to disable bugprone-infinite-loop [...] new c1701728b93 [DebugInfo] Re-instate LiveDebugVariables scope trimming new 04d7337d69f Revert "[DebugInfo][DAG] Distinguish different kinds of loc [...] new 4eb45a05a78 Revert "[DebugInfo] Remove some users of DBG_VALUEs IsIndir [...]
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/Sema/SemaCast.cpp | 18 +++++ clang/lib/Sema/SemaOverload.cpp | 24 +++--- 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/docs/ReleaseNotes.rst | 13 ++++ llvm/include/llvm/Support/CrashRecoveryContext.h | 5 ++ llvm/include/llvm/Support/Process.h | 6 ++ 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/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 +---- 46 files changed, 351 insertions(+), 255 deletions(-) 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