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-arm-stable-allnoconfig in repository toolchain/ci/llvm-project.
from a23c9071322 Merging r367802: ------------------------------------------ [...] adds 47a55832c34 Merging r368498: ------------------------------------------ [...] adds 4b59015880a Merging r368230: ------------------------------------------ [...] adds b13c264ccaf Merging r366541: ------------------------------------------ [...] adds 2c69b1377cb Merging r368581: ------------------------------------------ [...] new 97e6d088e94 Merging r368517, r368518, r368519, and r368554: new 3f910512f5b Merging r368572: ------------------------------------------ [...] new 8bb0d04858d Merging r368477: ------------------------------------------ [...] new a705aadb6c0 Merging r368478: ------------------------------------------ [...] new ff20769ba57 Merging r368516: ------------------------------------------ [...] new fcfd891f22a Merging r367303: ------------------------------------------ [...] new f44fc8869c1 Merging r368549: ------------------------------------------ [...]
The 7 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-tools-extra/clangd/ClangdServer.cpp | 8 +- clang-tools-extra/clangd/ClangdUnit.cpp | 5 +- clang-tools-extra/clangd/Diagnostics.cpp | 50 +++--- clang-tools-extra/clangd/Diagnostics.h | 2 + clang-tools-extra/clangd/FormattedString.cpp | 11 +- clang-tools-extra/clangd/Headers.cpp | 2 +- clang-tools-extra/clangd/IncludeFixer.cpp | 2 +- clang-tools-extra/clangd/Quality.cpp | 7 +- clang-tools-extra/clangd/SourceCode.cpp | 4 + clang-tools-extra/clangd/SourceCode.h | 8 + clang-tools-extra/clangd/TUScheduler.cpp | 9 +- clang-tools-extra/clangd/XRefs.cpp | 2 +- clang-tools-extra/clangd/index/SymbolCollector.cpp | 3 +- clang-tools-extra/clangd/refactor/Rename.cpp | 3 +- clang-tools-extra/clangd/tool/ClangdMain.cpp | 6 +- .../clangd/unittests/DiagnosticsTests.cpp | 23 ++- .../clangd/unittests/FormattedStringTests.cpp | 38 ++++- .../clangd/unittests/SourceCodeTests.cpp | 30 ++++ .../clangd/unittests/SymbolCollectorTests.cpp | 3 +- compiler-rt/test/asan/Unit/lit.site.cfg.py.in | 6 + compiler-rt/test/asan/lit.cfg.py | 8 +- compiler-rt/test/xray/Unit/lit.site.cfg.py.in | 8 + llvm/include/llvm/CodeGen/SelectionDAG.h | 28 +++- llvm/include/llvm/MC/MCContext.h | 13 ++ .../lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp | 1 + llvm/lib/CodeGen/MachineModuleInfo.cpp | 2 +- .../CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp | 10 ++ llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 + llvm/lib/MC/MCContext.cpp | 6 + llvm/lib/MC/MCParser/AsmParser.cpp | 4 +- llvm/lib/Target/RISCV/RISCVISelLowering.cpp | 6 +- llvm/lib/Target/X86/X86ISelLowering.cpp | 5 + .../Transforms/InstCombine/InstCombineCompares.cpp | 25 ++- llvm/test/CodeGen/AArch64/callbr-asm-label.ll | 63 ++++++++ llvm/test/CodeGen/AArch64/callbr-asm-obj-file.ll | 102 ++++++++++++ llvm/test/CodeGen/RISCV/add-before-shl.ll | 40 +++++ llvm/test/CodeGen/X86/callbr-asm-label-addr.ll | 30 ++++ llvm/test/CodeGen/X86/callbr-asm-obj-file.ll | 19 +++ llvm/test/CodeGen/X86/callbr-asm.ll | 16 +- llvm/test/CodeGen/X86/label-heapallocsite.ll | 173 ++++++++++++--------- .../shift-amount-reassociation-in-bittest.ll | 99 ++++++++++-- 41 files changed, 713 insertions(+), 168 deletions(-) create mode 100644 llvm/test/CodeGen/AArch64/callbr-asm-label.ll create mode 100644 llvm/test/CodeGen/AArch64/callbr-asm-obj-file.ll create mode 100644 llvm/test/CodeGen/X86/callbr-asm-label-addr.ll create mode 100644 llvm/test/CodeGen/X86/callbr-asm-obj-file.ll