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-mainline-allnoconfig in repository toolchain/ci/llvm-monorepo.
from 5fa59576a81 Use error() instead of fatal() to report an invalid address range. adds c7b095054a5 [MS] Mangle return adjusting thunks with the public access [...] adds 22f192ee127 [clang-cl] Treat inputs as C++ with /E, like MSVC adds 9d5ad48b305 [codeview] Check if this 'this' type of a method is a pointer adds a015ad06390 [LoopIdiomRecognize] Add CTTZ support adds 1cff0694ee2 [WebAssembly] Fix typos in comments in RegStackify (NFC) adds 2584fd96eb3 [WebAssembly] Delete an unnecessary line in RegStackify adds f0a11da6993 manpages: Update the URL for https adds d1a0ebc5597 [WebAssembly] Make assembler check for proper nesting of co [...] adds 9653648cf14 [WebAssembly] Added basic support for if/else/end_if in MC layer. adds 11979ba2f83 [msan] Disable tail call optimization in msan rtl. adds d5d6ec37117 [X86] Merge getBitTestCondition into LowerAndToBT. Don't cr [...] adds 20a395ab10d [X86] Factor the core code out of LowerSETCC into a helper [...] adds 53300973829 Revert "[msan] Disable tail call optimization in msan rtl." adds 2e6bebc343b [X86] Remove check that avoids creating PMULDQ with illegal [...] adds 6eb8377e347 Do not rely on that subject of ErrorAllocTypeMismatch is a [...] adds c044d0737b2 DWARF: Fix a bug in array size computation adds 7570249aaea lldb-test ir-memory-map: Use IntervalMap::contains adds 89decafe548 Delete lldb_utility::Range adds ffd84af2cee Fix "default argument for lambda parameter" (-Wpedantic) warning adds 90eb588a5b0 [Sanitizer] Enable FTS api on FreeBSD adds 21a2ad682b2 Fix assertion failure in NativeProcessProtocolTest adds 6aa97d06e56 [objc-gnustep] Fix a copy-and-paste error. adds 77ec4b95ffa Fix tests for python 3.7 adds e06d0628a87 Reduce indentation in ObjectFilePECOFF::CreateSections via [...] adds f9b718ff6b2 Adjust NetBSD/md[45].cc to be portable to more environments adds bb9274f4459 Adjust NetBSD/md2.cc to be portable to more environments adds da48ccb1817 Adjust NetBSD/sha2.cc to be portable to more environments
No new revisions were added by this update.
Summary of changes: clang/lib/AST/MicrosoftMangle.cpp | 18 +- clang/lib/CodeGen/CGObjCGNU.cpp | 2 +- clang/lib/Driver/Driver.cpp | 5 +- .../test/CodeGenCXX/mangle-ms-thunks-covariant.cpp | 29 +++ clang/test/Driver/cl-idl.cpp | 18 ++ compiler-rt/lib/asan/asan_errors.cc | 5 +- compiler-rt/lib/asan/asan_errors.h | 7 +- .../sanitizer_platform_interceptors.h | 2 +- .../sanitizer_platform_limits_freebsd.cc | 3 + .../sanitizer_platform_limits_freebsd.h | 2 + .../asan/TestCases/Linux/new_delete_mismatch.cc | 1 + .../TestCases/Linux/new_delete_mismatch_global.cc | 16 ++ .../TestCases/Linux/new_delete_mismatch_stack.cc | 17 ++ .../test/sanitizer_common/TestCases/NetBSD/md2.cc | 8 +- .../test/sanitizer_common/TestCases/NetBSD/md4.cc | 8 +- .../test/sanitizer_common/TestCases/NetBSD/md5.cc | 4 +- .../test/sanitizer_common/TestCases/NetBSD/sha2.cc | 24 +- .../TestCases/{NetBSD => Posix}/fts.cc | 2 + lldb/include/lldb/Target/MemoryRegionInfo.h | 1 - lldb/include/lldb/Utility/Range.h | 60 ----- lldb/lit/SymbolFile/DWARF/array-sizes.s | 147 ++++++++++++ lldb/packages/Python/lldbsuite/test/decorators.py | 3 +- .../Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp | 266 ++++++++++----------- .../Plugins/Process/minidump/ProcessMinidump.cpp | 4 +- .../Plugins/SymbolFile/DWARF/DWARFFormValue.cpp | 28 ++- .../Plugins/SymbolFile/DWARF/HashedNameToDIE.cpp | 4 +- lldb/source/Utility/CMakeLists.txt | 1 - lldb/source/Utility/Range.cpp | 76 ------ lldb/tools/lldb-test/lldb-test.cpp | 35 +-- lldb/unittests/Host/NativeProcessProtocolTest.cpp | 3 +- llvm/docs/conf.py | 2 +- llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h | 3 + llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 25 +- llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h | 2 +- llvm/lib/MC/MCParser/AsmParser.cpp | 3 + .../WebAssembly/AsmParser/WebAssemblyAsmParser.cpp | 115 ++++++++- .../Target/WebAssembly/WebAssemblyInstrControl.td | 14 +- .../Target/WebAssembly/WebAssemblyRegStackify.cpp | 5 +- llvm/lib/Target/X86/X86ISelLowering.cpp | 192 ++++++++------- llvm/lib/Target/X86/X86ISelLowering.h | 7 + llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp | 149 +++++++----- llvm/test/CodeGen/X86/mulvi32.ll | 29 +-- llvm/test/DebugInfo/COFF/types-this-not-ptr.ll | 45 ++++ llvm/test/MC/WebAssembly/basic-assembly-errors.s | 25 ++ llvm/test/MC/WebAssembly/basic-assembly.s | 10 + llvm/test/MC/WebAssembly/simd-encodings.s | 3 + llvm/test/Transforms/LoopIdiom/X86/cttz.ll | 82 +++++++ 47 files changed, 970 insertions(+), 540 deletions(-) create mode 100644 clang/test/CodeGenCXX/mangle-ms-thunks-covariant.cpp create mode 100644 clang/test/Driver/cl-idl.cpp create mode 100644 compiler-rt/test/asan/TestCases/Linux/new_delete_mismatch_global.cc create mode 100644 compiler-rt/test/asan/TestCases/Linux/new_delete_mismatch_stack.cc rename compiler-rt/test/sanitizer_common/TestCases/{NetBSD => Posix}/fts.cc (95%) delete mode 100644 lldb/include/lldb/Utility/Range.h create mode 100644 lldb/lit/SymbolFile/DWARF/array-sizes.s delete mode 100644 lldb/source/Utility/Range.cpp create mode 100644 llvm/test/DebugInfo/COFF/types-this-not-ptr.ll create mode 100644 llvm/test/MC/WebAssembly/basic-assembly-errors.s create mode 100644 llvm/test/Transforms/LoopIdiom/X86/cttz.ll