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-next-allmodconfig in repository toolchain/ci/llvm-monorepo.
from f02b24c273a [LoopUnroll] add parsing for unroll parameters in -passes pipeline adds 1c63837b731 PECOFF: Fix section name computation adds 33238b98972 Revert "Add a verbose mode to "image dump line-table" and u [...] adds 59a5e7e5447 [ARM] Fix for verifier buildbot adds 51de268e364 [pstl] Fix CMake configuration when parallel policies are disabled adds 63e5bd5c403 [pstl] Fix compile errors when PARALLEL_POLICIES is disabled adds 7f3a5192e53 [clang-tidy] Fix case of local variables in modernize-use-n [...] adds 568aa4f8303 [compiler-rt][builtins][PowerPC] Implemented __fixunstfti b [...] adds b40f0e863ef Correct the spelling of helpURI to helpUri. adds 968f404e463 [compiler-rt][builtins][PowerPC] Implemented __floattitf bu [...] adds a96107a31f6 [LLD][ELF] - Support MSP430. adds 5788ab0f9e2 [MCA] Fix wrong definition of ResourceUnitMask in DefaultRe [...] adds c0cf47f44ce [llvm-symbolizer] Add support for specifying addresses on c [...] new 1aee81e8c14 [X86] Add SSE41 vector abs tests
The 1 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/modernize/UseNodiscardCheck.cpp | 12 +- clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp | 2 +- .../sarif-multi-diagnostic-test.c.sarif | 4 +- compiler-rt/lib/builtins/CMakeLists.txt | 2 + compiler-rt/lib/builtins/ppc/fixunstfti.c | 106 ++++ compiler-rt/lib/builtins/ppc/floattitf.c | 48 ++ .../test/builtins/Unit/ppc/fixunstfti_test.c | 52 ++ .../test/builtins/Unit/ppc/fixunstfti_test.h | 706 +++++++++++++++++++++ .../test/builtins/Unit/ppc/floattitf_test.c | 59 ++ .../test/builtins/Unit/ppc/floattitf_test.h | 197 ++++++ lld/ELF/Arch/MSP430.cpp | 94 +++ lld/ELF/CMakeLists.txt | 1 + lld/ELF/InputFiles.cpp | 2 + lld/ELF/Target.cpp | 2 + lld/ELF/Target.h | 1 + lld/test/ELF/Inputs/msp430.s | 4 + lld/test/lit.cfg.py | 1 + lldb/lit/Modules/PECOFF/sections-names.yaml | 52 ++ lldb/lit/SymbolFile/DWARF/debug-line-basic.s | 75 --- lldb/source/Commands/CommandObjectTarget.cpp | 48 +- .../Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp | 31 +- .../Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.h | 2 +- .../llvm/MCA/HardwareUnits/ResourceManager.h | 8 +- llvm/include/llvm/MCA/Instruction.h | 15 +- llvm/include/llvm/MCA/Stages/ExecuteStage.h | 2 +- llvm/include/llvm/MCA/Stages/InstructionTables.h | 3 +- llvm/include/llvm/MCA/Support.h | 2 +- llvm/lib/MCA/HardwareUnits/ResourceManager.cpp | 6 +- llvm/lib/MCA/InstrBuilder.cpp | 12 +- llvm/lib/MCA/Pipeline.cpp | 4 +- llvm/lib/MCA/Stages/ExecuteStage.cpp | 8 +- llvm/lib/MCA/Support.cpp | 21 +- llvm/lib/Target/ARM/Thumb2SizeReduction.cpp | 10 +- llvm/test/CodeGen/X86/viabs.ll | 92 ++- llvm/test/tools/llvm-symbolizer/basic.s | 19 + llvm/tools/llvm-mca/Views/SummaryView.cpp | 3 +- llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp | 80 +-- pstl/CMakeLists.txt | 2 +- pstl/include/pstl/internal/algorithm_impl.h | 102 ++- pstl/include/pstl/internal/numeric_impl.h | 10 + 40 files changed, 1672 insertions(+), 228 deletions(-) create mode 100644 compiler-rt/lib/builtins/ppc/fixunstfti.c create mode 100644 compiler-rt/lib/builtins/ppc/floattitf.c create mode 100644 compiler-rt/test/builtins/Unit/ppc/fixunstfti_test.c create mode 100644 compiler-rt/test/builtins/Unit/ppc/fixunstfti_test.h create mode 100644 compiler-rt/test/builtins/Unit/ppc/floattitf_test.c create mode 100644 compiler-rt/test/builtins/Unit/ppc/floattitf_test.h create mode 100644 lld/ELF/Arch/MSP430.cpp create mode 100644 lld/test/ELF/Inputs/msp430.s create mode 100644 lldb/lit/Modules/PECOFF/sections-names.yaml delete mode 100644 lldb/lit/SymbolFile/DWARF/debug-line-basic.s create mode 100644 llvm/test/tools/llvm-symbolizer/basic.s