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-aarch64-lts-allyesconfig in repository toolchain/ci/llvm-project.
from 78a6062c24d [DebugInfo@O2][LoopVectorize] pr39024: Vectorized code line [...] adds ab8c8da6092 [scudo][standalone] Introduce the Quarantine adds 3044ac058bd Avoid use-after-move warnings by using swap instead. NFCI. adds b33fdb7768e [WebAssembly] Don't generate unused table entries. adds 0ff89dacaf4 PostfixExpression: Use signed integers in IntegerNode adds 51497fb8b37 Mark private function __sign as constexpr. adds fe71b92e0a5 Make eh-frame-dwarf-unwind.test run on non-linux platforms adds 7ff0c0ddd30 Fixup r360161 adds 2a3d16feea3 [InstCombine] add tests for FP min/max with negated operands; NFC adds a9d6c32eafc [DAGCombiner] Avoid creating large tokenfactors in visitTok [...] adds 7ffd963834f [Driver] Add command line option to allow loading local lld [...] adds 0ed545ebb3f Regenerate test to try and fix buildbots adds ccdefb24ada Guard __builtin_available() with __has_builtin to support o [...] adds cc63db4ff0f [PowerPC][NFC] Update build-vector-tests.ll using utils/upd [...] adds e6e8db5e9bc Debug Info: Support address space attributes on rvalue references. adds 800e6e34ae4 [Tests] Yet more combination of tests for unordered.atomic memset adds fb381607f00 [Host] Clean up dependencies of HostMacOSXObjCXX adds 102ec0977d1 [CommandLine] Allow Options to specify multiple OptionCategory's. adds 6a281a75450 [InstCombine] allow sinking fneg operands through an FP min/max adds 45ab7d7dc64 [compiler-rt] Create install targets for Darwin libraries
No new revisions were added by this update.
Summary of changes: compiler-rt/cmake/Modules/AddCompilerRT.cmake | 47 +- .../cmake/Modules/CompilerRTDarwinUtils.cmake | 13 +- compiler-rt/cmake/Modules/CompilerRTUtils.cmake | 50 + compiler-rt/lib/scudo/standalone/CMakeLists.txt | 1 + compiler-rt/lib/scudo/standalone/mutex.h | 1 + compiler-rt/lib/scudo/standalone/quarantine.h | 291 + .../lib/scudo/standalone/tests/CMakeLists.txt | 1 + .../lib/scudo/standalone/tests/quarantine_test.cc | 240 + libcxx/include/numeric | 2 +- lld/test/wasm/pie.ll | 2 +- lld/test/wasm/shared.ll | 10 +- lld/wasm/InputFiles.cpp | 2 + lld/wasm/Writer.cpp | 40 +- lldb/include/lldb/Symbol/PostfixExpression.h | 6 +- lldb/lit/Driver/LocalLLDBInit.test | 7 +- lldb/lit/Unwind/Inputs/call-asm.c | 3 + lldb/lit/Unwind/Inputs/eh-frame-dwarf-unwind.s | 18 +- lldb/lit/Unwind/eh-frame-dwarf-unwind.test | 6 +- lldb/source/Host/macosx/objcxx/CMakeLists.txt | 4 - lldb/source/Symbol/PostfixExpression.cpp | 6 +- lldb/tools/driver/Driver.cpp | 5 + lldb/tools/driver/Options.td | 3 + lldb/unittests/Symbol/CMakeLists.txt | 1 + lldb/unittests/Symbol/PostfixExpressionTest.cpp | 13 +- lldb/unittests/Symbol/TestLineEntry.cpp | 3 - .../PdbFPOProgramToDWARFExpressionTests.cpp | 8 +- llvm/include/llvm/Support/CommandLine.h | 13 +- llvm/lib/Bitcode/Writer/ValueEnumerator.cpp | 3 +- llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp | 8 +- llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 5 +- .../CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 7 +- llvm/lib/IR/Verifier.cpp | 3 +- llvm/lib/Support/CommandLine.cpp | 37 +- llvm/lib/Support/Unix/Path.inc | 3 +- .../Transforms/InstCombine/InstCombineCompares.cpp | 10 +- llvm/test/CodeGen/PowerPC/build-vector-tests.ll | 6513 ++++++++++++-------- .../X86/element-wise-atomic-memory-intrinsics.ll | 122 + .../test/DebugInfo/Generic/address_space_rvalue.ll | 26 + llvm/test/Transforms/InstCombine/minmax-fp.ll | 55 + .../Transforms/LoopIdiom/bcmp-debugify-remarks.ll | 52 +- ...ivedtype-address-space-rvalue-reference-type.ll | 4 +- llvm/unittests/Support/CommandLineTest.cpp | 68 +- 42 files changed, 5070 insertions(+), 2642 deletions(-) create mode 100644 compiler-rt/lib/scudo/standalone/quarantine.h create mode 100644 compiler-rt/lib/scudo/standalone/tests/quarantine_test.cc create mode 100644 lldb/lit/Unwind/Inputs/call-asm.c create mode 100644 llvm/test/DebugInfo/Generic/address_space_rvalue.ll