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-allnoconfig in repository toolchain/ci/llvm-project.
from 38870af8594 [lldb] Remove FileSpec->CompileUnit inheritance adds 4f000824222 [clangd] Fix 407ac2e, which was broken and committed too soon adds d1d6049e9d6 [lldb][NFC] Remove dead logging code from DWARFASTParserCla [...] adds d752b75d7fc [lldb][NFC] Simplify regex_chars in CommandCompletions adds 656a8123dee [lldb] Fix windows build for 38870af adds 76016f9b3a9 [lldb][NFC] Early exit in ClangASTContext::CreateInstance adds 363cbcc5904 [InstCombine] Run the cast.ll test a twice, now also testin [...] adds bc7f1df6b61 [lldb][NFC] Explicitly ask for a ClangASTContext in ClangASTSource adds c214c92f3be [lldb][NFC] Remove ClangASTContext::GetBuiltinTypeForEncodi [...] adds 8059188c45f [lldb][NFC] Remove unused ClangASTContext::GetBasicType(Con [...] adds 45c843de4eb [LLDB] [ARM] Use r11 as frame pointer on Windows on ARM adds 19daa21f841 [clangd] Rethink how SelectionTree deals with macros and #i [...] adds 471d06020a6 [CIndex] Fix annotate-deep-statements test when using a Deb [...] adds 3b0b7536a31 On Windows, fix fuse-ld.c test when lld is provided explict [...] adds c313a6bdbe3 Revert "[NFC] Fix test reserve_global_reg.ll after 2d739f9" adds 76fd58d0fe6 Revert "[ARM] Allocatable Global Register Variables for ARM" adds 26ab827c24c [PowerPC][AIX] Add support for lowering int/float/double fo [...] adds 905b002c139 Revert "[clangd] Rethink how SelectionTree deals with macro [...]
No new revisions were added by this update.
Summary of changes: clang-tools-extra/clangd/TUScheduler.cpp | 6 +- clang/docs/ClangCommandLineReference.rst | 21 - clang/include/clang/Basic/DiagnosticDriverKinds.td | 4 - clang/include/clang/Basic/DiagnosticGroups.td | 3 - clang/include/clang/Basic/DiagnosticSemaKinds.td | 2 - clang/include/clang/Basic/TargetInfo.h | 6 - clang/include/clang/Driver/Options.td | 5 +- clang/lib/Basic/Targets/ARM.cpp | 32 - clang/lib/Basic/Targets/ARM.h | 3 - clang/lib/Driver/ToolChains/Arch/ARM.cpp | 38 +- clang/lib/Sema/SemaChecking.cpp | 3 +- clang/lib/Sema/SemaDecl.cpp | 2 - clang/test/Driver/arm-reserved-reg-options.c | 35 - clang/test/Driver/fuse-ld.c | 4 +- clang/test/Sema/arm-global-regs.c | 20 - clang/tools/libclang/CIndex.cpp | 9 +- lldb/include/lldb/Symbol/ClangASTContext.h | 5 - lldb/source/Commands/CommandCompletions.cpp | 5 +- .../ExpressionParser/Clang/ClangASTSource.cpp | 21 +- .../ExpressionParser/Clang/ClangASTSource.h | 4 +- .../Clang/ClangExpressionDeclMap.cpp | 31 +- .../Clang/ClangExpressionParser.cpp | 2 +- .../Instruction/ARM/EmulateInstructionARM.cpp | 8 +- .../SymbolFile/DWARF/DWARFASTParserClang.cpp | 71 +- lldb/source/Symbol/ClangASTContext.cpp | 142 ++- .../Minidump/Windows/Inputs/arm-fp-unwind.dmp.yaml | 37 + .../Minidump/Windows/Inputs/arm-fp-unwind.exe.yaml | 92 ++ .../test/Shell/Minidump/Windows/arm-fp-unwind.test | 17 + lldb/unittests/Symbol/TestClangASTContext.cpp | 38 +- .../SymbolFile/PDB/SymbolFilePDBTests.cpp | 2 +- llvm/lib/Target/ARM/ARM.td | 8 +- llvm/lib/Target/ARM/ARMAsmPrinter.cpp | 2 +- llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp | 19 +- llvm/lib/Target/ARM/ARMFrameLowering.cpp | 17 +- llvm/lib/Target/ARM/ARMISelLowering.cpp | 12 +- llvm/lib/Target/ARM/ARMSubtarget.cpp | 19 +- llvm/lib/Target/ARM/ARMSubtarget.h | 9 +- llvm/lib/Target/ARM/ARMTargetTransformInfo.h | 4 +- llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 118 ++- llvm/lib/Target/PowerPC/PPCISelLowering.h | 4 + llvm/test/CodeGen/ARM/reg-alloc-fixed-r6-vla.ll | 44 - .../ARM/reg-alloc-with-fixed-reg-r6-modified.ll | 63 -- .../CodeGen/ARM/reg-alloc-with-fixed-reg-r6.ll | 57 -- llvm/test/CodeGen/ARM/reg-alloc-wout-fixed-regs.ll | 58 -- llvm/test/CodeGen/PowerPC/aix_cc_abi.ll | 614 +++++++++++++ llvm/test/CodeGen/PowerPC/aix_fpr_param.ll | 150 ---- llvm/test/CodeGen/PowerPC/aix_gpr_param.ll | 199 ----- llvm/test/CodeGen/Thumb/callee_save_reserved.ll | 15 - llvm/test/Feature/reserve_global_reg.ll | 30 - llvm/test/Transforms/InstCombine/cast.ll | 993 +++++++++++---------- 50 files changed, 1537 insertions(+), 1566 deletions(-) delete mode 100644 clang/test/Driver/arm-reserved-reg-options.c delete mode 100644 clang/test/Sema/arm-global-regs.c create mode 100644 lldb/test/Shell/Minidump/Windows/Inputs/arm-fp-unwind.dmp.yaml create mode 100644 lldb/test/Shell/Minidump/Windows/Inputs/arm-fp-unwind.exe.yaml create mode 100644 lldb/test/Shell/Minidump/Windows/arm-fp-unwind.test delete mode 100644 llvm/test/CodeGen/ARM/reg-alloc-fixed-r6-vla.ll delete mode 100644 llvm/test/CodeGen/ARM/reg-alloc-with-fixed-reg-r6-modified.ll delete mode 100644 llvm/test/CodeGen/ARM/reg-alloc-with-fixed-reg-r6.ll delete mode 100644 llvm/test/CodeGen/ARM/reg-alloc-wout-fixed-regs.ll create mode 100644 llvm/test/CodeGen/PowerPC/aix_cc_abi.ll delete mode 100644 llvm/test/CodeGen/PowerPC/aix_fpr_param.ll delete mode 100644 llvm/test/CodeGen/PowerPC/aix_gpr_param.ll delete mode 100644 llvm/test/CodeGen/Thumb/callee_save_reserved.ll delete mode 100644 llvm/test/Feature/reserve_global_reg.ll