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-stable-allnoconfig in repository toolchain/ci/llvm-project.
from 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 [...] new cee62e6fcff Fix a typo.
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/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 - .../ExpressionParser/Clang/ClangASTSource.cpp | 21 +- .../ExpressionParser/Clang/ClangASTSource.h | 4 +- .../Clang/ClangExpressionDeclMap.cpp | 31 +- .../Clang/ClangExpressionParser.cpp | 2 +- .../Instruction/ARM/EmulateInstructionARM.cpp | 8 +- lldb/source/Symbol/ClangASTContext.cpp | 62 +-- .../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 +- llvm/lib/CodeGen/CodeGenPrepare.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 - 46 files changed, 991 insertions(+), 957 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