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-allmodconfig in repository toolchain/ci/llvm-project.
from e698958ad80 [BPF] generate R_BPF_NONE relocation for BTF DataSec variables adds 11b2f4fe50d [LoopInterchange] Fix handling of LCSSA nodes defined in he [...] adds cfe08bc7d68 llvm-undname: Make demangling of MD5 names more robust adds ba883e980a9 [X86] Add test cases for D62444. NFC adds 0ff41b8a5af Revert r361356: "[MIR] Add simple PRE pass to MachineCSE" adds 76737f4d19f Remove elf::createSharedFile and move its code to SharedFil [...] adds 1d28030f997 [test commit] Add my name to the CREDITS.TXT adds c11de5eada2 [clang-tidy] Fix unused-variable warning after r361647. adds 6e379e2b68a Make llvm-as --help great again adds 0f40585d2d5 Cmake: allow using LLVM_EXTERNAL_PROJECTS with LLVM_ENABLE_ [...] adds c8272195cd2 [ASTImporter] Added visibility context check for CXXRecordDecl. adds 32497f57dfe [CodeComplete] Complete 'return true/false' in boolean functions adds 519ef6afdf1 DWARF: Remove cu_idx variables from parsing functions adds 68b20c589c4 [ARM GlobalISel] Cleanup CallLowering a bit adds c675215f679 [ARM GlobalISel] Un-XFAIL some tests. NFC adds a53d48b7f45 [OpenCL] Fix file-scope const sampler variable for 2.0 adds ae4ec62cc9a FuncUnwinders: prefer debug_frame over eh_frame adds 2b5f340bcba DWARF: Add a simple test exercising debug_loc parsing adds 5a500fd2c50 XFAIL prefer-debug-over-eh-frame.test on darwin adds 441ad625313 Test commit (NFC) adds 3860aad6e7f [MustExecute] Improve MustExecute to correctly handle loop nest adds b79af7930ca [AMDGPU][MC] Enabled constant expressions as operands of s_waitcnt adds 80d5d168fdc Add test cases for dumping AST expression nodes to JSON; NFC. adds 11e05491454 DWARFDebugArangeSet: Remove references to SymbolFileDWARF adds bcc0cedf770 When dumping the AST to JSON, dump the argument name to a s [...] adds e7b3b80fb12 When dumping the AST to JSON, dump the declared name of a M [...] adds 1b0ae8f05f1 When dumping the AST to JSON, dump whether a function is va [...] adds e091ab1b2df When dumping the AST to JSON, dump the type information fro [...] adds 4a7c4069aee [AMDGPU] Fix for the address sanitizer failure caused b [...] adds 20c3c4fe5a8 [clang] Respect TerseOutput when printing lambdas adds d99f9373d33 [LLParser] Fix uninitialized flag variable warnings. NFCI. adds ebb053b139e [SelectionDAG] GetDemandedBits - add demanded elements wrap [...] adds 5379f1a6c58 Include what you use in AArch64AsmBackend.cpp adds 00a538a230e NFC: Change usage of 'DenseSet' to 'DenseSetImpl' in DenseS [...] adds f4040a0dd81 [AMDGPU] Fix for the address sanitizer failure. Fixing typo adds 9c70c574b4f [SelectionDAG] Enhance the simplification of `copyto` from [...] adds e13ae3e4d82 [SelectionDAG] fix formatting and redundant comments; NFC adds e32ff096858 [Preprocessor] Fix crash emitting note with framework locat [...] adds 2f99d009c1f [SelectionDAG] fold concat of extract subvectors adds ca84c4be4b4 RegAllocFast: Set MayLiveAcrossBlocks when allocating uses adds 23343c5d90b [RuntimeDyld][ARM] Fix an incorrect assertion condition.
No new revisions were added by this update.
Summary of changes: .../clang-tidy/utils/TransformerClangTidyCheck.cpp | 13 +- clang/include/clang/AST/JSONNodeDumper.h | 13 +- clang/include/clang/Lex/HeaderSearch.h | 5 +- clang/lib/AST/ASTDumper.cpp | 4 +- clang/lib/AST/ASTImporter.cpp | 3 + clang/lib/AST/JSONNodeDumper.cpp | 21 +- clang/lib/AST/StmtPrinter.cpp | 5 +- clang/lib/Lex/HeaderSearch.cpp | 5 +- clang/lib/Sema/SemaCodeComplete.cpp | 37 +- clang/lib/Sema/SemaType.cpp | 16 +- clang/test/AST/ast-dump-expr-json.c | 2 + clang/test/AST/ast-dump-expr-json.cpp | 9013 ++++++++++++++++++++ clang/test/AST/ast-dump-stmt-json.cpp | 2 + clang/test/CodeCompletion/patterns.cpp | 17 +- clang/test/CodeGenOpenCL/sampler.cl | 15 +- .../TestFramework.hmap.json | 7 + ...de-header-missing-in-framework-with-headermap.c | 20 + clang/test/SemaOpenCL/sampler_t.cl | 7 + clang/unittests/AST/ASTImporterVisibilityTest.cpp | 37 +- clang/unittests/AST/StmtPrinterTest.cpp | 14 + lld/ELF/Driver.cpp | 2 +- lld/ELF/InputFiles.cpp | 100 +- lld/ELF/InputFiles.h | 1 - lldb/lit/SymbolFile/DWARF/debug_loc.s | 117 + .../lit/Unwind/Inputs/prefer-debug-over-eh-frame.s | 38 + lldb/lit/Unwind/prefer-debug-over-eh-frame.test | 24 + .../SymbolFile/DWARF/DWARFDebugArangeSet.cpp | 6 +- .../Plugins/SymbolFile/DWARF/DWARFDebugArangeSet.h | 5 +- .../Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp | 61 +- .../Plugins/SymbolFile/DWARF/SymbolFileDWARF.h | 7 +- .../SymbolFile/DWARF/SymbolFileDWARFDwo.cpp | 6 +- .../Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.h | 3 +- lldb/source/Symbol/FuncUnwinders.cpp | 8 +- llvm/CMakeLists.txt | 3 + llvm/CREDITS.TXT | 4 + llvm/include/llvm/ADT/DenseSet.h | 2 +- llvm/include/llvm/CodeGen/SelectionDAG.h | 18 +- llvm/lib/Analysis/MustExecute.cpp | 9 +- llvm/lib/AsmParser/LLParser.cpp | 4 +- llvm/lib/CodeGen/LiveDebugValues.cpp | 1 + llvm/lib/CodeGen/MachineCSE.cpp | 122 +- llvm/lib/CodeGen/RegAllocFast.cpp | 28 +- llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp | 40 +- llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h | 5 - llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 54 +- llvm/lib/Demangle/MicrosoftDemangle.cpp | 28 +- .../RuntimeDyld/Targets/RuntimeDyldMachOARM.h | 2 +- .../AArch64/MCTargetDesc/AArch64AsmBackend.cpp | 5 +- .../Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp | 64 +- llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp | 4 +- llvm/lib/Target/ARM/ARMCallLowering.cpp | 33 +- llvm/lib/Target/ARM/ARMCallLowering.h | 2 +- llvm/lib/Transforms/Scalar/LoopInterchange.cpp | 86 +- llvm/test/Analysis/CostModel/X86/arith-fp.ll | 171 + llvm/test/Analysis/MustExecute/loop-header.ll | 8 +- llvm/test/CodeGen/AMDGPU/i1-copy-phi.ll | 19 + llvm/test/CodeGen/AMDGPU/implicit-def-muse.ll | 22 + .../CodeGen/ARM/GlobalISel/arm-irtranslator.ll | 1 - .../CodeGen/ARM/GlobalISel/arm-param-lowering.ll | 1 - llvm/test/CodeGen/Mips/internalfunc.ll | 3 +- llvm/test/CodeGen/X86/avx2-masked-gather.ll | 48 +- llvm/test/CodeGen/X86/masked_compressstore.ll | 1013 ++- llvm/test/CodeGen/X86/masked_gather.ll | 94 +- llvm/test/CodeGen/X86/masked_store.ll | 722 +- llvm/test/CodeGen/X86/masked_store_trunc.ll | 531 +- llvm/test/CodeGen/X86/masked_store_trunc_ssat.ll | 527 +- llvm/test/CodeGen/X86/masked_store_trunc_usat.ll | 535 +- .../X86/regalloc-fast-missing-live-out-spill.mir | 66 + llvm/test/Demangle/ms-md5.test | 16 +- llvm/test/MC/AMDGPU/sopp-err.s | 28 +- llvm/test/MC/AMDGPU/sopp.s | 24 + .../Transforms/LoopInterchange/perserve-lcssa.ll | 181 + llvm/test/tools/llvm-as/help.test | 3 + llvm/test/tools/{llvm-nm => llvm-as}/lit.local.cfg | 0 llvm/tools/llvm-as/llvm-as.cpp | 22 +- 75 files changed, 12371 insertions(+), 1812 deletions(-) create mode 100644 clang/test/AST/ast-dump-expr-json.cpp create mode 100644 clang/test/Preprocessor/Inputs/include-header-missing-in-framew [...] create mode 100644 clang/test/Preprocessor/include-header-missing-in-framework-wit [...] create mode 100644 lldb/lit/SymbolFile/DWARF/debug_loc.s create mode 100644 lldb/lit/Unwind/Inputs/prefer-debug-over-eh-frame.s create mode 100644 lldb/lit/Unwind/prefer-debug-over-eh-frame.test create mode 100644 llvm/test/CodeGen/AMDGPU/implicit-def-muse.ll create mode 100644 llvm/test/CodeGen/X86/regalloc-fast-missing-live-out-spill.mir create mode 100644 llvm/test/Transforms/LoopInterchange/perserve-lcssa.ll create mode 100644 llvm/test/tools/llvm-as/help.test copy llvm/test/tools/{llvm-nm => llvm-as}/lit.local.cfg (100%)