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-master-arm-lts-allmodconfig in repository toolchain/ci/llvm-monorepo.
from c106e40c51c [OPENMP][NVPTX]Added/fixed debugging messages, NFC. adds bb2091b7ac1 [Sanitizer] Enable getfsent api for Darwin adds f55a25e2d60 Add support for background thread on NetBSD in ASan adds 3b806a9410b Reenable hard_rss_limit_mb_test.cc for android-26 adds d2d11f28185 [X86] Don't mark SEXTLOAD v4i8->v4i64 and v8i8->v8i64 as cu [...] adds b1801ea485c Add vtable anchor to classes. adds b20fd9695d3 Add vtable anchor to classes. adds 73e71c39503 [WebAssembly] Fix comments in ExplicitLocals (NFC) adds 4b841979c47 Drop SE cache early because loop parent can change in LoopS [...] adds e9853a02625 [SymbolContext] Rewrite operator== to be more concise. adds 633a67e5b7d [CompilerType] Remove dead code. NFCI. adds a850e77d8e7 [CompilerType] Simplify operator!=. NFCI. adds 4e1bfe7ac35 [RegisterValue] Rewrite operator!= in terms of operator==. NFCI. adds bf2ff622a31 [X86] Add test case from PR38217. NFC adds 2a75f0eac9f [mips] Show a regular error message on attempt to use one b [...] adds aef0837de80 [mips] Show an error on attempt to use 64-bit PC-relative r [...] adds e5a8bcc96b8 [PowerPC] Fix CR Bit spill pseudo expansion adds fc0ae46fee4 [InstCombine] [NFC] update testcases for canonicalize MUL w [...] adds d57abdac186 [PowerPC] Complete the custom legalization of vector int to [...] adds 645d02b4846 [PowerPC][NFC] Macro for register set defs for the Asm Parser adds 30ffad93013 [CodeGen] Replace '@' characters in block descriptors' symb [...]
No new revisions were added by this update.
Summary of changes: clang/include/clang/AST/DeclCXX.h | 1 + clang/include/clang/AST/DeclTemplate.h | 1 + clang/include/clang/Lex/ModuleMap.h | 2 + clang/lib/AST/DeclCXX.cpp | 2 + clang/lib/AST/DeclTemplate.cpp | 2 + clang/lib/CodeGen/CGBlocks.cpp | 3 + clang/lib/Lex/ModuleMap.cpp | 2 + clang/test/CodeGenObjC/block-desc-str.m | 14 + clang/test/CodeGenObjCXX/block-nested-in-lambda.mm | 4 +- compiler-rt/lib/asan/asan_rtl.cc | 10 +- .../sanitizer_common/sanitizer_common_libcdep.cc | 4 +- .../sanitizer_platform_interceptors.h | 2 +- .../sanitizer_platform_limits_posix.cc | 2 + .../sanitizer_platform_limits_posix.h | 1 + .../sanitizer_common/TestCases/Posix/getfsent.cc | 2 +- .../{Linux => }/hard_rss_limit_mb_test.cc | 3 +- lldb/source/Symbol/CompilerType.cpp | 13 +- lldb/source/Symbol/SymbolContext.cpp | 7 +- lldb/source/Utility/RegisterValue.cpp | 27 +- .../include/llvm/CodeGen/GlobalISel/CallLowering.h | 4 + llvm/include/llvm/CodeGen/SelectionDAG.h | 3 + llvm/include/llvm/IR/DiagnosticInfo.h | 6 + llvm/include/llvm/Object/Error.h | 1 + llvm/include/llvm/Support/Error.h | 2 + llvm/include/llvm/Support/FormatVariadicDetails.h | 2 + llvm/include/llvm/Support/VirtualFileSystem.h | 2 + llvm/include/llvm/Support/raw_ostream.h | 2 + llvm/lib/CodeGen/GlobalISel/CallLowering.cpp | 4 + llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 + llvm/lib/IR/DiagnosticInfo.cpp | 8 + llvm/lib/Object/Error.cpp | 1 + llvm/lib/Support/Error.cpp | 1 + llvm/lib/Support/FormatVariadic.cpp | 2 + llvm/lib/Support/VirtualFileSystem.cpp | 2 + llvm/lib/Support/raw_ostream.cpp | 2 + .../Mips/MCTargetDesc/MipsELFObjectWriter.cpp | 9 +- llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp | 165 +- .../PowerPC/Disassembler/PPCDisassembler.cpp | 209 +-- .../Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h | 60 + llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 59 +- llvm/lib/Target/PowerPC/PPCInstrVSX.td | 79 +- llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp | 13 +- .../WebAssembly/WebAssemblyExplicitLocals.cpp | 7 +- llvm/lib/Target/X86/X86ISelLowering.cpp | 8 - llvm/lib/Transforms/Scalar/LoopSimplifyCFG.cpp | 10 +- .../PowerPC/NoCRFieldRedefWhenSpillingCRBIT.mir | 121 ++ .../CodeGen/PowerPC/vec_conv_i16_to_fp32_elts.ll | 1314 +++------------ .../CodeGen/PowerPC/vec_conv_i16_to_fp64_elts.ll | 311 ++-- .../CodeGen/PowerPC/vec_conv_i64_to_fp32_elts.ll | 884 ++++------ .../CodeGen/PowerPC/vec_conv_i8_to_fp32_elts.ll | 1415 ++++------------ .../CodeGen/PowerPC/vec_conv_i8_to_fp64_elts.ll | 1707 +++++++------------- llvm/test/CodeGen/PowerPC/vsx.ll | 34 +- llvm/test/CodeGen/X86/pr38217.ll | 79 + llvm/test/CodeGen/X86/vector-sext-widen.ll | 134 +- llvm/test/MC/Mips/unsupported-relocation.s | 10 +- llvm/test/Transforms/InstCombine/mul.ll | 25 +- 56 files changed, 2197 insertions(+), 4602 deletions(-) create mode 100644 clang/test/CodeGenObjC/block-desc-str.m rename compiler-rt/test/sanitizer_common/TestCases/{Linux => }/hard_rss_limit_mb_t [...] create mode 100644 llvm/test/CodeGen/PowerPC/NoCRFieldRedefWhenSpillingCRBIT.mir create mode 100644 llvm/test/CodeGen/X86/pr38217.ll